X-Git-Url: https://wimlib.net/git/?a=blobdiff_plain;f=src%2Fxpress-decompress.c;h=233e9355b221f65e2c4baad947fb0af6aae21c9c;hb=daf72364fc96380cdc0d8ceeeda640d82930f1b9;hp=e4f4c6ba43f4e7f0c8da423d698d87fe2b017925;hpb=883833a4b3dabec325edf1ca938000f91d587c00;p=wimlib diff --git a/src/xpress-decompress.c b/src/xpress-decompress.c index e4f4c6ba..233e9355 100644 --- a/src/xpress-decompress.c +++ b/src/xpress-decompress.c @@ -133,7 +133,7 @@ xpress_decode_match(unsigned sym, input_idx_t window_pos, match_len += XPRESS_MIN_MATCH_LEN; - /* Verify the match is in bounds, then copy its data to the the current + /* Verify the match is in bounds, then copy its data to the current * position. */ if (window_pos + match_len > window_len) @@ -195,7 +195,6 @@ xpress_lz_decode(struct input_bitstream * restrict istream, } -/* API function documented in wimlib.h */ static int xpress_decompress(const void *compressed_data, size_t compressed_size, void *uncompressed_data, size_t uncompressed_size, void *_ctx)