summaryrefslogtreecommitdiff
path: root/examples
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 /examples
parent0b22337126401ef68ac5cf0308413239a4fb9c83 (diff)
downloadzlib-51a223def4382fdd0c9531ba77bd10724eae9f5f.tar.gz
Avoid use of DEBUG macro -- change to ZLIB_DEBUG.
Diffstat (limited to 'examples')
-rw-r--r--examples/gzlog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/gzlog.c b/examples/gzlog.c
index 922f878..f33a862 100644
--- a/examples/gzlog.c
+++ b/examples/gzlog.c
@@ -243,7 +243,7 @@ typedef unsigned int uint;
typedef unsigned long ulong;
/* Macro for debugging to deterministically force recovery operations */
-#ifdef DEBUG
+#ifdef GZLOG_DEBUG
#include <setjmp.h> /* longjmp */
jmp_buf gzlog_jump; /* where to go back to */
int gzlog_bail = 0; /* which point to bail at (1..8) */