aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2025-10-23 19:30:22 +0200
committerlemon <lsof@mailbox.org>2025-10-23 19:30:22 +0200
commited989e2a0855e175442b0f5e73bb3fa4833efecd (patch)
treef8d41cf1694df584313a9761e71f5eb738ef83cd
parent8e699c96e69bd15131cd351f198acb0b4bc1d4d6 (diff)
lex enlarge internht
-rw-r--r--c/lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/lex.c b/c/lex.c
index 1c30da6..57c79af 100644
--- a/c/lex.c
+++ b/c/lex.c
@@ -4,7 +4,7 @@
const char *
intern(const char *s)
{
- static const char *ht[1<<12];
+ static const char *ht[1<<14];
static struct { char m[sizeof(struct arena) + (1<<10)]; struct arena *_a; } amem;
static struct arena *arena;
uint h, i, n = arraylength(ht);