From 89789e5191fb268df503164b5965d715e7afcd5c Mon Sep 17 00:00:00 2001 From: Bill Rossi Date: Thu, 26 Dec 2024 14:18:29 -0500 Subject: [PATCH] Remove unused variable --- c/lib/hashmap.h | 1 - 1 file changed, 1 deletion(-) 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; }