diff options
author | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 11:43:21 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2015-11-07 11:43:21 +0000 |
commit | 41463d1237df40b1cf3a1916057370c2913a5932 (patch) | |
tree | 159ebcfb30be0a014e2fa29b35235585ed256648 /lzip.h | |
parent | Adding debian version 1.15~rc1-1. (diff) | |
download | lziprecover-41463d1237df40b1cf3a1916057370c2913a5932.tar.xz lziprecover-41463d1237df40b1cf3a1916057370c2913a5932.zip |
Merging upstream version 1.15.
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to '')
-rw-r--r-- | lzip.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -68,10 +68,10 @@ enum { max_match_len = min_match_len + max_len_symbols - 1, // 273 min_match_len_limit = 5, - max_dis_states = 4 }; + dis_states = 4 }; inline int get_dis_state( const int len ) - { return std::min( len - min_match_len, max_dis_states - 1 ); } + { return std::min( len - min_match_len, dis_states - 1 ); } inline int get_lit_state( const uint8_t prev_byte ) { return ( prev_byte >> ( 8 - literal_context_bits ) ); } |