Fix header name typo.
authorDavid Given <dg@cowlark.com>
Sun, 22 Jan 2017 22:30:38 +0000 (23:30 +0100)
committerDavid Given <dg@cowlark.com>
Sun, 22 Jan 2017 22:30:38 +0000 (23:30 +0100)
modules/src/data/hashtable.h

index c158bba..1c5598f 100644 (file)
@@ -50,7 +50,7 @@ extern void* hashtable_get(struct hashtable* ht, void* key);
 extern void* hashtable_remove(struct hashtable* ht, void* key);
 extern void* hashtable_pop(struct hashtable* ht);
 extern void* hashtable_next(struct hashtable* ht, struct hashtable_iterator* it);
-extern void* hashtable_delete_and_next(struct hashtable* ht, struct hashtable_iterator* it);
+extern void hashtable_delete_current(struct hashtable* ht, struct hashtable_iterator* it);
 
 extern void hashtable_copy_all(struct hashtable* src, struct hashtable* dest);