]> wimlib.net Git - wimlib/blobdiff - src/lzx-decompress.c
Fix UNIX build; rename functions; comments
[wimlib] / src / lzx-decompress.c
index 2b3c0f903149f73965fadfb47dd3457d1d057b70..1cc5113c4515b0f1fa60065f35a1b714982f13e6 100644 (file)
@@ -7,7 +7,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.
  *
@@ -318,7 +318,6 @@ static int lzx_read_block_header(struct input_bitstream *istream,
        unsigned s;
        unsigned i;
        unsigned len;
-       u32 R[3];
 
        ret = bitstream_ensure_bits(istream, 4);
        if (ret != 0) {