X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Flzx-decompress.c;h=13b00761eff664eaf4b68b6350c35620c9d12c4e;hb=5ed5a1ef610700e463abd0c07aed377cce5eef47;hp=e0f3b85afc6c23d682e5eca6e7260b86824d0a1a;hpb=31e7d901124217da4e02717f6b59ee437d15aef3;p=wimlib diff --git a/src/lzx-decompress.c b/src/lzx-decompress.c index e0f3b85a..13b00761 100644 --- a/src/lzx-decompress.c +++ b/src/lzx-decompress.c @@ -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;