hash_bits can only be up to 64 so use a char type.

This commit is contained in:
Con Kolivas 2012-12-31 13:04:06 +11:00
parent 73e921b862
commit 02b3250639

2
rzip.c
View file

@ -104,7 +104,7 @@ struct rzip_state {
struct level *level;
tag hash_index[256];
struct hash_entry *hash_table;
i64 hash_bits;
char hash_bits;
i64 hash_count;
i64 hash_limit;
tag minimum_tag_mask;