From 82b0af74501bf46b16bc2a4a9bd54239aa7b7127 Mon Sep 17 00:00:00 2001 From: Michael Wilder Date: Thu, 18 Mar 2021 18:45:28 -0400 Subject: [PATCH] Fix empty initializer compile error on win32 --- tccgen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tccgen.c b/tccgen.c index 11e69622..185125c6 100644 --- a/tccgen.c +++ b/tccgen.c @@ -5766,7 +5766,7 @@ static void parse_atomic(int atok) int mode; size_t arg; SValue *call; - CType atom = {}; + CType atom; static const char *const templates[] = { /* * Each entry consists of callback and function template.