From ab64cfca6f15354ccef5a86441cd9c35898a220a Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Wed, 11 Nov 2015 19:31:05 -0600 Subject: [PATCH 1/1] lzx_compress.c: minor comment fix --- src/lzx_compress.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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; }; -- 2.43.0