Remove unused variable

This commit is contained in:
Bill Rossi 2024-12-26 14:18:29 -05:00
parent ceb9db2967
commit 89789e5191

View File

@ -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;
}