aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/jpeg-6b/jdhuff.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/monniaux/jpeg-6b/jdhuff.c')
-rw-r--r--test/monniaux/jpeg-6b/jdhuff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/monniaux/jpeg-6b/jdhuff.c b/test/monniaux/jpeg-6b/jdhuff.c
index 41dab479..b5ba39f7 100644
--- a/test/monniaux/jpeg-6b/jdhuff.c
+++ b/test/monniaux/jpeg-6b/jdhuff.c
@@ -641,8 +641,8 @@ jinit_huff_decoder (j_decompress_ptr cinfo)
(*cinfo->mem->alloc_small) ((j_common_ptr) cinfo, JPOOL_IMAGE,
SIZEOF(huff_entropy_decoder));
cinfo->entropy = (struct jpeg_entropy_decoder *) entropy;
- ASSIGN_FUNPTR(entropy->pub.start_pass, start_pass_huff_decoder);
- ASSIGN_FUNPTR(entropy->pub.decode_mcu, decode_mcu);
+ entropy->pub.start_pass = start_pass_huff_decoder;
+ entropy->pub.decode_mcu = decode_mcu;
/* Mark tables unallocated */
for (i = 0; i < NUM_HUFF_TBLS; i++) {