diff options
Diffstat (limited to 'deflate.h')
-rw-r--r-- | deflate.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -310,9 +310,9 @@ void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len, | |||
310 | flush = (s->last_lit == s->lit_bufsize-1); \ | 310 | flush = (s->last_lit == s->lit_bufsize-1); \ |
311 | } | 311 | } |
312 | #else | 312 | #else |
313 | # define _tr_tally_lit(s, c, flush) _tr_tally(s, 0, c, flush) | 313 | # define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) |
314 | # define _tr_tally_dist(s, distance, length, flush) \ | 314 | # define _tr_tally_dist(s, distance, length, flush) \ |
315 | _tr_tally(s, distance, length, flush) | 315 | flush = _tr_tally(s, distance, length) |
316 | #endif | 316 | #endif |
317 | 317 | ||
318 | #endif | 318 | #endif |