From ce8b3432bf7c566c5799942b53711902b936193a Mon Sep 17 00:00:00 2001 From: herman ten brugge Date: Tue, 7 Oct 2025 14:32:13 +0200 Subject: [PATCH] Allow gcc 16 for build --- tests/tcctest.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/tcctest.c b/tests/tcctest.c index d40d08f5..ff504bf1 100644 --- a/tests/tcctest.c +++ b/tests/tcctest.c @@ -1686,7 +1686,7 @@ struct structinit1 { int sinit1 = 2; int sinit2 = { 3 }; -int sinit3[3] = { 1, 2, {{3}}, }; +int sinit3[3] = { 1, 2, {3}, }; int sinit4[3][2] = { {1, 2}, {3, 4}, {5, 6} }; int sinit5[3][2] = { 1, 2, 3, 4, 5, 6 }; int sinit6[] = { 1, 2, 3 };