mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
hash_bits can only be up to 64 so use a char type.
This commit is contained in:
parent
73e921b862
commit
02b3250639
2
rzip.c
2
rzip.c
|
|
@ -104,7 +104,7 @@ struct rzip_state {
|
||||||
struct level *level;
|
struct level *level;
|
||||||
tag hash_index[256];
|
tag hash_index[256];
|
||||||
struct hash_entry *hash_table;
|
struct hash_entry *hash_table;
|
||||||
i64 hash_bits;
|
char hash_bits;
|
||||||
i64 hash_count;
|
i64 hash_count;
|
||||||
i64 hash_limit;
|
i64 hash_limit;
|
||||||
tag minimum_tag_mask;
|
tag minimum_tag_mask;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue