diff options
Diffstat (limited to 'libhashtable.c')
-rw-r--r-- | libhashtable.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libhashtable.c b/libhashtable.c index 496a3ee..9eb0ed4 100644 --- a/libhashtable.c +++ b/libhashtable.c @@ -160,6 +160,6 @@ void *ht_getvalue(struct hashtable *ht,char *key) { } //delete the node in the linked list in the table entry that matches the key. -void *ht_delete(struct hashtable *ht,char *key) { +void ht_delete(struct hashtable *ht,char *key) { ll_delete(ht_getentry(ht,key)); } |