From: Mika Lindqvist Date: Mon, 13 Feb 2017 21:41:30 +0000 (+0200) Subject: quick_send_bits: variable 'code' is not used anymore. X-Git-Tag: 1.9.9-b1~684^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F85%2Fhead;p=thirdparty%2Fzlib-ng.git quick_send_bits: variable 'code' is not used anymore. --- diff --git a/arch/x86/deflate_quick.c b/arch/x86/deflate_quick.c index 422c3250..7596f750 100644 --- a/arch/x86/deflate_quick.c +++ b/arch/x86/deflate_quick.c @@ -123,7 +123,7 @@ static const unsigned quick_len_codes[MAX_MATCH-MIN_MATCH+1]; static const unsigned quick_dist_codes[8192]; static inline void quick_send_bits(deflate_state *const s, const int value, const int length) { - unsigned code, out, width, bytes_out; + unsigned out, width, bytes_out; /* Concatenate the new bits with the bits currently in the buffer */ out = s->bi_buf | (value << s->bi_valid);