From 28de23397f62ad8f5f9d3b3f7a8c382363838e45 Mon Sep 17 00:00:00 2001 From: Mika Lindqvist Date: Mon, 13 Feb 2017 23:41:30 +0200 Subject: [PATCH] quick_send_bits: variable 'code' is not used anymore. --- arch/x86/deflate_quick.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.47.2