summaryrefslogtreecommitdiff
path: root/tanja.c
diff options
context:
space:
mode:
Diffstat (limited to 'tanja.c')
-rw-r--r--tanja.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tanja.c b/tanja.c
index 10663fd..c616ff8 100644
--- a/tanja.c
+++ b/tanja.c
@@ -374,7 +374,7 @@ static inline void tn_map_grow(tn_el *m, int new) {
return;
int s = m->size;
if(!s)
- s = 32;
+ s = 16;
while(s < ((m->count+new)*4)/3)
s <<= 1;
assert(s < UINT16_MAX); // Might want to handle this