X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fxpress-decompress.c;h=7ad47264359cfcaace8a0c253afcccd43a220cf4;hb=31786dbc470c919893bf4fc5cc91a0f73cbee720;hp=431563b6a2de4c4c0b46fc6a3bce1b2bceea4644;hpb=dbe9b4a4b81485ba2a52a307a08adc048ea22bdd;p=wimlib diff --git a/src/xpress-decompress.c b/src/xpress-decompress.c index 431563b6..7ad47264 100644 --- a/src/xpress-decompress.c +++ b/src/xpress-decompress.c @@ -85,8 +85,8 @@ * Returns the match length, or -1 if the data is invalid. */ static int -xpress_decode_match(unsigned sym, input_idx_t window_pos, - input_idx_t window_len, u8 window[restrict], +xpress_decode_match(unsigned sym, u32 window_pos, + u32 window_len, u8 window[restrict], struct input_bitstream * restrict istream) { unsigned len_hdr; @@ -135,7 +135,7 @@ xpress_lz_decode(struct input_bitstream * restrict istream, unsigned uncompressed_len, const u16 decode_table[restrict]) { - input_idx_t curpos; + u32 curpos; unsigned match_len; for (curpos = 0; curpos < uncompressed_len; curpos += match_len) {