aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorlemon <lsof@mailbox.org>2026-04-17 21:22:15 +0200
committerlemon <lsof@mailbox.org>2026-04-17 21:22:15 +0200
commite9b132ef171114b0384ef30d6630db22d2b47e5d (patch)
treea417666dd20c471b22b7976438476755589bb23d
parent3cd04b7ea9e7d33ec6b50524f97ada82ecdfebbe (diff)
cpp: increment conditionals nesting limit
-rw-r--r--src/c_lex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/c_lex.c b/src/c_lex.c
index 970fac9..d1cbd55 100644
--- a/src/c_lex.c
+++ b/src/c_lex.c
@@ -1662,7 +1662,7 @@ static struct PPCond {
int filedepth;
uchar cnd;
bool elsep;
-} ppcndstk[32];
+} ppcndstk[64];
static int nppcnd;
static int includedepth;