From: Hans Kristian Rosbach Date: Sat, 23 May 2015 19:04:39 +0000 (+0200) Subject: Remove unused hash_head input parameter from function emit_match X-Git-Tag: 1.9.9-b1~811 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2b6fd3880e8534ec902c8e5fe1f44bff6312e91c;p=thirdparty%2Fzlib-ng.git Remove unused hash_head input parameter from function emit_match --- diff --git a/deflate_medium.c b/deflate_medium.c index 0d4d98a7d..c6b53df15 100644 --- a/deflate_medium.c +++ b/deflate_medium.c @@ -28,7 +28,7 @@ static int tr_tally_lit(deflate_state *s, int c) return _tr_tally(s, 0, c); } -static int emit_match(deflate_state *s, struct match match, IPos hash_head) +static int emit_match(deflate_state *s, struct match match) { int flush = 0; @@ -276,7 +276,7 @@ block_state deflate_medium(deflate_state *s, int flush) } /* now emit the current match */ - bflush = emit_match(s, current_match, hash_head); + bflush = emit_match(s, current_match); /* move the "cursor" forward */ s->strstart += current_match.match_length;