From d9a0011032a13d1477db102be3c1305af3223e72 Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Wed, 6 Jul 2022 09:59:05 +1000 Subject: [PATCH] create with a small hashvector size --- vector/hashvector.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vector/hashvector.c b/vector/hashvector.c index c261253..c9c2fb3 100644 --- a/vector/hashvector.c +++ b/vector/hashvector.c @@ -181,7 +181,7 @@ hashvector *hashvector_create(int variant,itemkeyfun *type) { (*hv) = (hashvector) { .table = (vector) { .variant = variant, - .size = 0, + .size = 16, .entries = 0 }, .fill = 0, -- 2.39.2