summaryrefslogtreecommitdiffstats
path: root/src/hashtable.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hashtable.h')
-rw-r--r--src/hashtable.h2
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 @@
25typedef struct hashentry_t { 25typedef 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
31typedef unsigned int(*hash_func_t)(const void* key); 31typedef unsigned int(*hash_func_t)(const void* key);