From 02b6cf579f02ec78c052735020a5d3c5723ed641 Mon Sep 17 00:00:00 2001 From: Mark Adler Date: Fri, 9 Sep 2011 23:20:07 -0700 Subject: zlib 1.1.1 --- deflate.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'deflate.h') diff --git a/deflate.h b/deflate.h index 34f5126..0483016 100644 --- a/deflate.h +++ b/deflate.h @@ -310,9 +310,9 @@ void _tr_stored_block OF((deflate_state *s, charf *buf, ulg stored_len, flush = (s->last_lit == s->lit_bufsize-1); \ } #else -# define _tr_tally_lit(s, c, flush) _tr_tally(s, 0, c, flush) +# define _tr_tally_lit(s, c, flush) flush = _tr_tally(s, 0, c) # define _tr_tally_dist(s, distance, length, flush) \ - _tr_tally(s, distance, length, flush) + flush = _tr_tally(s, distance, length) #endif #endif -- cgit v1.2.3-55-g6feb