diff options
author | Mark Adler <madler@alumni.caltech.edu> | 2015-07-28 22:44:31 -0700 |
---|---|---|
committer | Hans Kristian Rosbach <hk-git@circlestorm.org> | 2017-02-06 14:33:22 +0100 |
commit | 23b4bb3ec41db70b705a1c1e9e1cde72f9bac467 (patch) | |
tree | acb85d5fd7a488f09373c306a20b9139407c93da /deflate_p.h | |
parent | 8803bdbc026d19cfeaa7da91c77cde2a7342a7ad (diff) |
Avoid use of DEBUG macro -- change to ZLIB_DEBUG.
Diffstat (limited to 'deflate_p.h')
-rw-r--r-- | deflate_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deflate_p.h b/deflate_p.h index 6c9957a..3550818 100644 --- a/deflate_p.h +++ b/deflate_p.h @@ -15,7 +15,7 @@ /* Forward declare common non-inlined functions declared in deflate.c */ -#ifdef DEBUG +#ifdef ZLIB_DEBUG void check_match(deflate_state *s, IPos start, IPos match, int length); #else #define check_match(s, start, match, length) |