From: Eric Biggers Date: Thu, 12 Nov 2015 01:31:05 +0000 (-0600) Subject: lzx_compress.c: minor comment fix X-Git-Tag: v1.8.3~5 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=ab64cfca6f15354ccef5a86441cd9c35898a220a;ds=sidebyside lzx_compress.c: minor comment fix --- diff --git a/src/lzx_compress.c b/src/lzx_compress.c index 1bf1bf09..520c07e3 100644 --- a/src/lzx_compress.c +++ b/src/lzx_compress.c @@ -232,9 +232,10 @@ struct lzx_sequence { u16 adjusted_length; /* If bit 31 is clear, then this field contains the match header in bits - * 0-8 and the match offset minus LZX_OFFSET_ADJUSTMENT in bits 9-30. - * Otherwise, this sequence's literal run was the last literal run in - * the block, so there is no match that follows it. */ + * 0-8, and either the match offset plus LZX_OFFSET_ADJUSTMENT or a + * recent offset code in bits 9-30. Otherwise (if bit 31 is set), this + * sequence's literal run was the last literal run in the block, so + * there is no match that follows it. */ u32 adjusted_offset_and_match_hdr; };