X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Flzx-decompress.c;h=1cc5113c4515b0f1fa60065f35a1b714982f13e6;hb=7acdc3aecd7ce546727ae8239e0d942c2a00db43;hp=e0f3b85afc6c23d682e5eca6e7260b86824d0a1a;hpb=31e7d901124217da4e02717f6b59ee437d15aef3;p=wimlib diff --git a/src/lzx-decompress.c b/src/lzx-decompress.c index e0f3b85a..1cc5113c 100644 --- a/src/lzx-decompress.c +++ b/src/lzx-decompress.c @@ -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) { @@ -873,7 +872,7 @@ int lzx_decompress(const void *compressed_data, unsigned compressed_len, LZX_DEBUG("LZX_BLOCKTYPE_UNCOMPRESSED"); if (istream.data_bytes_left < block_size) { ERROR("Unexpected end of input when " - "reading %zu bytes from LZX bitstream " + "reading %u bytes from LZX bitstream " "(only have %u bytes left)", block_size, istream.data_bytes_left); return -1;