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 /examples | |
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 'examples')
-rw-r--r-- | examples/gzlog.c | 2 |
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; | |||
243 | typedef unsigned long ulong; | 243 | typedef unsigned long ulong; |
244 | 244 | ||
245 | /* Macro for debugging to deterministically force recovery operations */ | 245 | /* Macro for debugging to deterministically force recovery operations */ |
246 | #ifdef DEBUG | 246 | #ifdef GZLOG_DEBUG |
247 | #include <setjmp.h> /* longjmp */ | 247 | #include <setjmp.h> /* longjmp */ |
248 | jmp_buf gzlog_jump; /* where to go back to */ | 248 | jmp_buf gzlog_jump; /* where to go back to */ |
249 | int gzlog_bail = 0; /* which point to bail at (1..8) */ | 249 | int gzlog_bail = 0; /* which point to bail at (1..8) */ |