]> wimlib.net Git - wimlib/blobdiff - include/wimlib/lz.h
Rename raw_match => lz_match
[wimlib] / include / wimlib / lz.h
index 4206f144be8e6578bf5ebfc8456c44aa7e448aa3..dfba7c2a33d8b7e32638debf8b4ea53873c313aa 100644 (file)
@@ -5,12 +5,9 @@
 
 //#define ENABLE_LZ_DEBUG
 #ifdef ENABLE_LZ_DEBUG
-#  define LZ_DEBUG DEBUG
 #  define LZ_ASSERT wimlib_assert
 #  include "wimlib/assert.h"
-#  include "wimlib/error.h"
 #else
-#  define LZ_DEBUG(...)
 #  define LZ_ASSERT(...)
 #endif
 
@@ -22,7 +19,7 @@
  *
  * This can alternatively be used to represent a literal byte if @len is less
  * than the minimum match length.  */
-struct raw_match {
+struct lz_match {
        input_idx_t len;
        input_idx_t offset;
 };