mirror of
https://github.com/cuberite/libdeflate.git
synced 2025-09-12 22:09:48 -04:00
Fix comment
This commit is contained in:
parent
4f7d134b39
commit
7bfba00a19
@ -387,10 +387,10 @@ struct deflate_compressor {
|
|||||||
* actually check for overflow. The extra slots beyond
|
* actually check for overflow. The extra slots beyond
|
||||||
* this are enough to absorb the worst case overflow,
|
* this are enough to absorb the worst case overflow,
|
||||||
* which occurs if starting at &match_cache[CACHE_LENGTH
|
* which occurs if starting at &match_cache[CACHE_LENGTH
|
||||||
* - 1], we write the match count header, then write
|
* - 1], we write MAX_MATCHES_PER_POS matches and a
|
||||||
* MAX_MATCHES_PER_POS matches, then skip searching for
|
* match count header, then skip searching for matches
|
||||||
* matches at 'DEFLATE_MAX_MATCH_LEN - 1' positions and
|
* at 'DEFLATE_MAX_MATCH_LEN - 1' positions and write
|
||||||
* write the match count header for each.
|
* the match count header for each.
|
||||||
*/
|
*/
|
||||||
struct lz_match match_cache[CACHE_LENGTH +
|
struct lz_match match_cache[CACHE_LENGTH +
|
||||||
MAX_MATCHES_PER_POS +
|
MAX_MATCHES_PER_POS +
|
||||||
|
Loading…
x
Reference in New Issue
Block a user