]> wimlib.net Git - wimlib/blobdiff - src/lzx-decomp.c
Fix up LZ77 compression code and prepare v1.0.3
[wimlib] / src / lzx-decomp.c
index 8aa0b755cb2083fc8d97311733e3c60848cb8428..d598d941c1d49bb0c2fef2c6c4b44ba26de4636f 100644 (file)
@@ -626,8 +626,21 @@ static int lzx_decode_match(int main_element, int block_type,
                return -1;
        }
 
+#if 0
+       printf("Match: src %u, dst %u, len %u\n", match_src - window,
+                                               match_dest - window,
+                                               match_len);
+       putchar('|');
+       for (i = 0; i < match_len; i++) {
+               match_dest[i] = match_src[i];
+               putchar(match_src[i]);
+       }
+       putchar('|');
+       putchar('\n');
+#else
        for (i = 0; i < match_len; i++)
                match_dest[i] = match_src[i];
+#endif
 
        return match_len;
 }