From 7bfba00a1910f54c69ec774f8eb0ae621e8cf5b8 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Mon, 23 May 2016 19:08:20 -0500 Subject: [PATCH] Fix comment --- lib/deflate_compress.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/deflate_compress.c b/lib/deflate_compress.c index eb21d7b..e60bed7 100644 --- a/lib/deflate_compress.c +++ b/lib/deflate_compress.c @@ -387,10 +387,10 @@ struct deflate_compressor { * actually check for overflow. The extra slots beyond * this are enough to absorb the worst case overflow, * which occurs if starting at &match_cache[CACHE_LENGTH - * - 1], we write the match count header, then write - * MAX_MATCHES_PER_POS matches, then skip searching for - * matches at 'DEFLATE_MAX_MATCH_LEN - 1' positions and - * write the match count header for each. + * - 1], we write MAX_MATCHES_PER_POS matches and a + * match count header, then skip searching for matches + * at 'DEFLATE_MAX_MATCH_LEN - 1' positions and write + * the match count header for each. */ struct lz_match match_cache[CACHE_LENGTH + MAX_MATCHES_PER_POS +