diff --git a/c/lib/hashmap.h b/c/lib/hashmap.h index a55ce5f..e7e6008 100644 --- a/c/lib/hashmap.h +++ b/c/lib/hashmap.h @@ -42,7 +42,6 @@ void aoc_hashmap_put(AocHashmap *map, char *key, void *value) { node->value = value; node->next = NULL; } else { - AocHashmapNode *next = node->next; while (node->next != NULL) { node = node->next; }