summaryrefslogtreecommitdiff
path: root/deflate.h
diff options
context:
space:
mode:
authorMark Adler <madler@alumni.caltech.edu>2015-07-28 22:44:31 -0700
committerMark Adler <madler@alumni.caltech.edu>2015-07-28 22:44:31 -0700
commit51a223def4382fdd0c9531ba77bd10724eae9f5f (patch)
tree10310a523d1dc8bbef4b007fa2c7c3bb433ba5e5 /deflate.h
parent0b22337126401ef68ac5cf0308413239a4fb9c83 (diff)
downloadzlib-51a223def4382fdd0c9531ba77bd10724eae9f5f.tar.gz
Avoid use of DEBUG macro -- change to ZLIB_DEBUG.
Diffstat (limited to 'deflate.h')
-rw-r--r--deflate.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/deflate.h b/deflate.h
index ce0299e..8440790 100644
--- a/deflate.h
+++ b/deflate.h
@@ -249,7 +249,7 @@ typedef struct internal_state {
uInt matches; /* number of string matches in current block */
uInt insert; /* bytes at end of window left to insert */
-#ifdef DEBUG
+#ifdef ZLIB_DEBUG
ulg compressed_len; /* total bit length of compressed file mod 2^32 */
ulg bits_sent; /* bit length of compressed data sent mod 2^32 */
#endif
@@ -309,7 +309,7 @@ void ZLIB_INTERNAL _tr_stored_block OF((deflate_state *s, charf *buf,
* used.
*/
-#ifndef DEBUG
+#ifndef ZLIB_DEBUG
/* Inline versions of _tr_tally for speed: */
#if defined(GEN_TREES_H) || !defined(STDC)