diff options
Diffstat (limited to 'deflate.c')
-rw-r--r-- | deflate.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1151,7 +1151,7 @@ local uInt longest_match(s, cur_match) | |||
1151 | { | 1151 | { |
1152 | unsigned chain_length = s->max_chain_length;/* max hash chain length */ | 1152 | unsigned chain_length = s->max_chain_length;/* max hash chain length */ |
1153 | register Bytef *scan = s->window + s->strstart; /* current string */ | 1153 | register Bytef *scan = s->window + s->strstart; /* current string */ |
1154 | register Bytef *match; /* matched string */ | 1154 | register Bytef *match; /* matched string */ |
1155 | register int len; /* length of current match */ | 1155 | register int len; /* length of current match */ |
1156 | int best_len = s->prev_length; /* best match length so far */ | 1156 | int best_len = s->prev_length; /* best match length so far */ |
1157 | int nice_match = s->nice_match; /* stop if match long enough */ | 1157 | int nice_match = s->nice_match; /* stop if match long enough */ |