diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2015-07-28 22:44:31 -0700 |
---|---|---|
committer | Mark Adler <madler@alumni.caltech.edu> | 2015-07-28 22:44:31 -0700 |
commit | 51a223def4382fdd0c9531ba77bd10724eae9f5f (patch) | |
tree | 10310a523d1dc8bbef4b007fa2c7c3bb433ba5e5 /deflate.h | |
parent | 0b22337126401ef68ac5cf0308413239a4fb9c83 (diff) | |
download | zlib-51a223def4382fdd0c9531ba77bd10724eae9f5f.tar.gz zlib-51a223def4382fdd0c9531ba77bd10724eae9f5f.tar.bz2 zlib-51a223def4382fdd0c9531ba77bd10724eae9f5f.zip |
Avoid use of DEBUG macro -- change to ZLIB_DEBUG.
Diffstat (limited to 'deflate.h')
-rw-r--r-- | deflate.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -249,7 +249,7 @@ typedef struct internal_state { | |||
249 | uInt matches; /* number of string matches in current block */ | 249 | uInt matches; /* number of string matches in current block */ |
250 | uInt insert; /* bytes at end of window left to insert */ | 250 | uInt insert; /* bytes at end of window left to insert */ |
251 | 251 | ||
252 | #ifdef DEBUG | 252 | #ifdef ZLIB_DEBUG |
253 | ulg compressed_len; /* total bit length of compressed file mod 2^32 */ | 253 | ulg compressed_len; /* total bit length of compressed file mod 2^32 */ |
254 | ulg bits_sent; /* bit length of compressed data sent mod 2^32 */ | 254 | ulg bits_sent; /* bit length of compressed data sent mod 2^32 */ |
255 | #endif | 255 | #endif |
@@ -309,7 +309,7 @@ void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf, | |||
309 | * used. | 309 | * used. |
310 | */ | 310 | */ |
311 | 311 | ||
312 | #ifndef DEBUG | 312 | #ifndef ZLIB_DEBUG |
313 | /* Inline versions of _tr_tally for speed: */ | 313 | /* Inline versions of _tr_tally for speed: */ |
314 | 314 | ||
315 | #if defined(GEN_TREES_H) || !defined(STDC) | 315 | #if defined(GEN_TREES_H) || !defined(STDC) |