From 9cc0855c03fca8d80b91cbe5e5641e684ab39906 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Wed, 14 Feb 2024 02:46:08 -0500 Subject: [PATCH] compile error fix --- code/grime_hashtable.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/grime_hashtable.odin b/code/grime_hashtable.odin index 04b6d99..4f9a035 100644 --- a/code/grime_hashtable.odin +++ b/code/grime_hashtable.odin @@ -97,7 +97,7 @@ hashtable_grow :: proc( ht : ^ HashTable( $ Type ) ) -> AllocatorError { return rehash( ht, new_num ) } -hashtable_rehash :: proc ( ht : ^ HashTabe( $ Type ), new_num : i64 ) -> AllocatorError +hashtable_rehash :: proc ( ht : ^ HashTable( $ Type ), new_num : i64 ) -> AllocatorError { last_added_index : i64