]> git.ipfire.org Git - thirdparty/zlib-ng.git/commitdiff
quick_send_bits: variable 'code' is not used anymore. 85/head
authorMika Lindqvist <postmaster@raasu.org>
Mon, 13 Feb 2017 21:41:30 +0000 (23:41 +0200)
committerMika Lindqvist <postmaster@raasu.org>
Mon, 13 Feb 2017 21:41:30 +0000 (23:41 +0200)
arch/x86/deflate_quick.c

index 422c3250ed632b8a0bac42aa5fc3b35228dcfc99..7596f75048e848c00192f3ae78aabfb5202b6971 100644 (file)
@@ -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);