diff options
Diffstat (limited to 'archival/gzip.c')
-rw-r--r-- | archival/gzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/gzip.c b/archival/gzip.c index 7686e1adb..a9b216afe 100644 --- a/archival/gzip.c +++ b/archival/gzip.c | |||
@@ -1674,7 +1674,7 @@ static ulg flush_block(char *buf, ulg stored_len, int eof) | |||
1674 | 1674 | ||
1675 | /* =========================================================================== | 1675 | /* =========================================================================== |
1676 | * Update a hash value with the given input byte | 1676 | * Update a hash value with the given input byte |
1677 | * IN assertion: all calls to to UPDATE_HASH are made with consecutive | 1677 | * IN assertion: all calls to UPDATE_HASH are made with consecutive |
1678 | * input characters, so that a running hash key can be computed from the | 1678 | * input characters, so that a running hash key can be computed from the |
1679 | * previous key instead of complete recalculation each time. | 1679 | * previous key instead of complete recalculation each time. |
1680 | */ | 1680 | */ |
@@ -1705,7 +1705,7 @@ static ulg flush_block(char *buf, ulg stored_len, int eof) | |||
1705 | /* Insert string s in the dictionary and set match_head to the previous head | 1705 | /* Insert string s in the dictionary and set match_head to the previous head |
1706 | * of the hash chain (the most recent string with same hash key). Return | 1706 | * of the hash chain (the most recent string with same hash key). Return |
1707 | * the previous length of the hash chain. | 1707 | * the previous length of the hash chain. |
1708 | * IN assertion: all calls to to INSERT_STRING are made with consecutive | 1708 | * IN assertion: all calls to INSERT_STRING are made with consecutive |
1709 | * input characters and the first MIN_MATCH bytes of s are valid | 1709 | * input characters and the first MIN_MATCH bytes of s are valid |
1710 | * (except for the last MIN_MATCH-1 bytes of the input file). */ | 1710 | * (except for the last MIN_MATCH-1 bytes of the input file). */ |
1711 | #define INSERT_STRING(s, match_head) \ | 1711 | #define INSERT_STRING(s, match_head) \ |