@@ -372,7 +372,7 @@ int32_t Z_EXPORT PREFIX(deflateSetDictionary)(PREFIX3(stream) *strm, const uint8
372372
373373 /* when using zlib wrappers, compute Adler-32 for provided dictionary */
374374 if (wrap == 1 )
375- strm -> adler = functable . adler32 (strm -> adler , dictionary , dictLength );
375+ strm -> adler = FUNCTABLE_CALL ( adler32 ) (strm -> adler , dictionary , dictLength );
376376 DEFLATE_SET_DICTIONARY_HOOK (strm , dictionary , dictLength ); /* hook for IBM Z DFLTCC */
377377 s -> wrap = 0 ; /* avoid computing Adler-32 in read_buf */
378378
@@ -459,7 +459,7 @@ int32_t Z_EXPORT PREFIX(deflateResetKeep)(PREFIX3(stream) *strm) {
459459
460460#ifdef GZIP
461461 if (s -> wrap == 2 ) {
462- strm -> adler = functable . crc32_fold_reset (& s -> crc_fold );
462+ strm -> adler = FUNCTABLE_CALL ( crc32_fold_reset ) (& s -> crc_fold );
463463 } else
464464#endif
465465 strm -> adler = ADLER32_INITIAL_VALUE ;
@@ -565,7 +565,7 @@ int32_t Z_EXPORT PREFIX(deflateParams)(PREFIX3(stream) *strm, int32_t level, int
565565 if (s -> level != level ) {
566566 if (s -> level == 0 && s -> matches != 0 ) {
567567 if (s -> matches == 1 ) {
568- functable . slide_hash (s );
568+ FUNCTABLE_CALL ( slide_hash ) (s );
569569 } else {
570570 CLEAR_HASH (s );
571571 }
@@ -804,7 +804,7 @@ int32_t Z_EXPORT PREFIX(deflate)(PREFIX3(stream) *strm, int32_t flush) {
804804#ifdef GZIP
805805 if (s -> status == GZIP_STATE ) {
806806 /* gzip header */
807- functable . crc32_fold_reset (& s -> crc_fold );
807+ FUNCTABLE_CALL ( crc32_fold_reset ) (& s -> crc_fold );
808808 put_byte (s , 31 );
809809 put_byte (s , 139 );
810810 put_byte (s , 8 );
@@ -921,7 +921,7 @@ int32_t Z_EXPORT PREFIX(deflate)(PREFIX3(stream) *strm, int32_t flush) {
921921 }
922922 }
923923 put_short (s , (uint16_t )strm -> adler );
924- functable . crc32_fold_reset (& s -> crc_fold );
924+ FUNCTABLE_CALL ( crc32_fold_reset ) (& s -> crc_fold );
925925 }
926926 s -> status = BUSY_STATE ;
927927
@@ -992,7 +992,7 @@ int32_t Z_EXPORT PREFIX(deflate)(PREFIX3(stream) *strm, int32_t flush) {
992992 /* Write the trailer */
993993#ifdef GZIP
994994 if (s -> wrap == 2 ) {
995- strm -> adler = functable . crc32_fold_final (& s -> crc_fold );
995+ strm -> adler = FUNCTABLE_CALL ( crc32_fold_final ) (& s -> crc_fold );
996996
997997 put_uint32 (s , strm -> adler );
998998 put_uint32 (s , (uint32_t )strm -> total_in );
@@ -1110,10 +1110,10 @@ Z_INTERNAL unsigned PREFIX(read_buf)(PREFIX3(stream) *strm, unsigned char *buf,
11101110 memcpy (buf , strm -> next_in , len );
11111111#ifdef GZIP
11121112 } else if (strm -> state -> wrap == 2 ) {
1113- functable . crc32_fold_copy (& strm -> state -> crc_fold , buf , strm -> next_in , len );
1113+ FUNCTABLE_CALL ( crc32_fold_copy ) (& strm -> state -> crc_fold , buf , strm -> next_in , len );
11141114#endif
11151115 } else if (strm -> state -> wrap == 1 ) {
1116- strm -> adler = functable . adler32_fold_copy (strm -> adler , buf , strm -> next_in , len );
1116+ strm -> adler = FUNCTABLE_CALL ( adler32_fold_copy ) (strm -> adler , buf , strm -> next_in , len );
11171117 } else {
11181118 memcpy (buf , strm -> next_in , len );
11191119 }
@@ -1206,7 +1206,7 @@ void Z_INTERNAL PREFIX(fill_window)(deflate_state *s) {
12061206 s -> block_start -= (int )wsize ;
12071207 if (s -> insert > s -> strstart )
12081208 s -> insert = s -> strstart ;
1209- functable . slide_hash (s );
1209+ FUNCTABLE_CALL ( slide_hash ) (s );
12101210 more += wsize ;
12111211 }
12121212 if (s -> strm -> avail_in == 0 )
0 commit comments