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 42d7b93..514cfec 100644 --- a/src/hashtable.h +++ b/src/hashtable.h | |||
| @@ -25,7 +25,7 @@ | |||
| 25 | typedef struct hashentry_t { | 25 | typedef struct hashentry_t { |
| 26 | void *key; | 26 | void *key; |
| 27 | void *value; | 27 | void *value; |
| 28 | void *next; | 28 | struct hashentry_t *next; |
| 29 | } hashentry_t; | 29 | } hashentry_t; |
| 30 | 30 | ||
| 31 | typedef unsigned int(*hash_func_t)(const void* key); | 31 | typedef unsigned int(*hash_func_t)(const void* key); |
