]> wimlib.net Git - wimlib/blobdiff - include/wimlib/lz.h
Get rid of input_idx_t
[wimlib] / include / wimlib / lz.h
index 1b84fc47cbd3e467863b2c4d113f65e97d8e3ead..7870c9725db1e5440b00abd2a59c8d810813eaff 100644 (file)
@@ -19,9 +19,9 @@
  *
  * This can alternatively be used to represent a literal byte if @len is less
  * than the minimum match length.  */
-struct raw_match {
-       input_idx_t len;
-       input_idx_t offset;
+struct lz_match {
+       u32 len;
+       u32 offset;
 };
 
 #endif /* _WIMLIB_LZ_H */