X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fdecompress.c;h=5de137956286fbd5730eaaa0a4b41f3203a98cab;hb=34935d41624c903db230efbd5b0a1f37e7fdcc32;hp=c5e739110783e5f3921c83e3e14a6f19af649a82;hpb=11b249a3d62d88ca4c5123570f21e754715628e5;p=wimlib diff --git a/src/decompress.c b/src/decompress.c index c5e73911..5de13795 100644 --- a/src/decompress.c +++ b/src/decompress.c @@ -5,7 +5,7 @@ */ /* - * Copyright (C) 2012 Eric Biggers + * Copyright (C) 2012, 2013 Eric Biggers * * This file is part of wimlib, a library for working with WIM files. * @@ -245,7 +245,6 @@ int make_huffman_decode_table(u16 decode_table[], unsigned num_syms, unsigned sym = sorted_syms[i]; unsigned codeword_len = lens[sym]; unsigned extra_bits = codeword_len - table_bits; - unsigned extra_mask; cur_codeword <<= (codeword_len - prev_codeword_len); prev_codeword_len = codeword_len;