Remove unused variable
This commit is contained in:
parent
ceb9db2967
commit
89789e5191
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user