aboutsummaryrefslogtreecommitdiff
path: root/deflate.c
diff options
context:
space:
mode:
Diffstat (limited to 'deflate.c')
-rw-r--r--deflate.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/deflate.c b/deflate.c
index aeabbae..7a9e05e 100644
--- a/deflate.c
+++ b/deflate.c
@@ -92,7 +92,7 @@ local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
92local uInt longest_match OF((deflate_state *s, IPos cur_match)); 92local uInt longest_match OF((deflate_state *s, IPos cur_match));
93#endif 93#endif
94 94
95#ifdef DEBUG 95#ifdef ZLIB_DEBUG
96local void check_match OF((deflate_state *s, IPos start, IPos match, 96local void check_match OF((deflate_state *s, IPos start, IPos match,
97 int length)); 97 int length));
98#endif 98#endif
@@ -1349,7 +1349,7 @@ local uInt longest_match(s, cur_match)
1349 1349
1350#endif /* FASTEST */ 1350#endif /* FASTEST */
1351 1351
1352#ifdef DEBUG 1352#ifdef ZLIB_DEBUG
1353/* =========================================================================== 1353/* ===========================================================================
1354 * Check that the match at match_start is indeed a match. 1354 * Check that the match at match_start is indeed a match.
1355 */ 1355 */
@@ -1375,7 +1375,7 @@ local void check_match(s, start, match, length)
1375} 1375}
1376#else 1376#else
1377# define check_match(s, start, match, length) 1377# define check_match(s, start, match, length)
1378#endif /* DEBUG */ 1378#endif /* ZLIB_DEBUG */
1379 1379
1380/* =========================================================================== 1380/* ===========================================================================
1381 * Fill the window when the lookahead becomes insufficient. 1381 * Fill the window when the lookahead becomes insufficient.