summaryrefslogtreecommitdiff
path: root/instance_table.c
diff options
context:
space:
mode:
Diffstat (limited to 'instance_table.c')
-rw-r--r--instance_table.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/instance_table.c b/instance_table.c
index 33a7eba..85bb71d 100644
--- a/instance_table.c
+++ b/instance_table.c
@@ -308,7 +308,7 @@ static bool val_eq(Value u, Value v, Type *t) {
*/
/* OPTIM: store instances in a block array (remember that the pointers need to stay valid!) */
static Instance *instance_table_adda(Allocator *a, HashTable *h, Value v, Type *t,
- bool *already_exists) {
+ bool *already_exists) {
if (h->n * 2 >= h->cap) {
U64 new_cap = h->cap * 2 + 3;
Instance **new_data = allocr_malloc(a, (size_t)new_cap * sizeof *new_data);