diff options
Diffstat (limited to 'src/hashtable.h')
| -rw-r--r-- | src/hashtable.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/hashtable.h b/src/hashtable.h index c28de91..60a40ab 100644 --- a/src/hashtable.h +++ b/src/hashtable.h | |||
| @@ -32,7 +32,7 @@ typedef unsigned int(*hash_func_t)(const void* key); | |||
| 32 | typedef int (*compare_func_t)(const void *a, const void *b); | 32 | typedef int (*compare_func_t)(const void *a, const void *b); |
| 33 | 33 | ||
| 34 | typedef struct hashtable_t { | 34 | typedef struct hashtable_t { |
| 35 | hashentry_t *entries[256]; | 35 | hashentry_t *entries[4096]; |
| 36 | size_t count; | 36 | size_t count; |
| 37 | hash_func_t hash_func; | 37 | hash_func_t hash_func; |
| 38 | compare_func_t compare_func; | 38 | compare_func_t compare_func; |
