Skip to content

Commit 7443d29

Browse files
committed
Allow bigger hash table sizes (uint16_t -> uint32_t).
1 parent 292adec commit 7443d29

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/zip_hash.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ struct zip_hash_entry {
4444
typedef struct zip_hash_entry zip_hash_entry_t;
4545

4646
struct zip_hash {
47-
zip_uint16_t table_size;
47+
zip_uint32_t table_size;
4848
zip_hash_entry_t **table;
4949
};
5050

0 commit comments

Comments
 (0)