diff options
-rw-r--r-- | deflate.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -148,9 +148,6 @@ local const config configuration_table[10] = { | |||
148 | * meaning. | 148 | * meaning. |
149 | */ | 149 | */ |
150 | 150 | ||
151 | #define EQUAL 0 | ||
152 | /* result of memcmp for equal strings */ | ||
153 | |||
154 | /* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */ | 151 | /* rank Z_BLOCK between Z_NO_FLUSH and Z_PARTIAL_FLUSH */ |
155 | #define RANK(f) (((f) * 2) - ((f) > 4 ? 9 : 0)) | 152 | #define RANK(f) (((f) * 2) - ((f) > 4 ? 9 : 0)) |
156 | 153 | ||
@@ -1345,6 +1342,10 @@ local uInt longest_match(s, cur_match) | |||
1345 | #endif /* FASTEST */ | 1342 | #endif /* FASTEST */ |
1346 | 1343 | ||
1347 | #ifdef ZLIB_DEBUG | 1344 | #ifdef ZLIB_DEBUG |
1345 | |||
1346 | #define EQUAL 0 | ||
1347 | /* result of memcmp for equal strings */ | ||
1348 | |||
1348 | /* =========================================================================== | 1349 | /* =========================================================================== |
1349 | * Check that the match at match_start is indeed a match. | 1350 | * Check that the match at match_start is indeed a match. |
1350 | */ | 1351 | */ |