]> wimlib.net Git - wimlib/blobdiff - src/xpress-decompress.c
xpress-decompress.c: Remove unneeded wimlib.h include
[wimlib] / src / xpress-decompress.c
index 431563b6a2de4c4c0b46fc6a3bce1b2bceea4644..ebe0d23b73d6c1eccf23c9b4ee023d0172a13b3d 100644 (file)
@@ -69,7 +69,6 @@
 #  include "config.h"
 #endif
 
-#include "wimlib.h"
 #include "wimlib/decompressor_ops.h"
 #include "wimlib/decompress_common.h"
 #include "wimlib/xpress.h"
@@ -85,8 +84,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 +134,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) {