From fc18e73c7e66c7a03381312937434aac7210ca6b Mon Sep 17 00:00:00 2001 From: Tom Smeding Date: Sat, 8 Aug 2020 12:06:59 +0200 Subject: server: Fix bug in hashtable --- hashtable.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'hashtable.h') diff --git a/hashtable.h b/hashtable.h index 21467a8..5147fa5 100644 --- a/hashtable.h +++ b/hashtable.h @@ -5,9 +5,10 @@ struct hashtable; -struct hashtable* ht_alloc(); +struct hashtable* ht_alloc(void); void ht_free(struct hashtable *ht); +// Overwrites if the key already exists in the table. void ht_insert(struct hashtable *ht, u64 key, void *value); // Returns NULL if key is not present in the table. -- cgit v1.2.3-54-g00ecf