]> wimlib.net Git - wimlib/blobdiff - src/xpress-decompress.c
Get rid of input_idx_t
[wimlib] / src / xpress-decompress.c
index 431563b6a2de4c4c0b46fc6a3bce1b2bceea4644..7ad47264359cfcaace8a0c253afcccd43a220cf4 100644 (file)
@@ -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) {