From d5b0c9a5a2fefb20ca571d8b02bf135b2b5014a1 Mon Sep 17 00:00:00 2001 From: nhmall Date: Mon, 20 Nov 2023 16:12:28 -0500 Subject: [PATCH] some follow-up for -Wno-missing-field-initializers avoidance I wasn't getting a warning on this line myself, I just had it reported. Because of that, I can't be certain this fixes it either. --- src/decl.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/decl.c b/src/decl.c index 025939f6b..782b5d32a 100644 --- a/src/decl.c +++ b/src/decl.c @@ -473,7 +473,10 @@ const struct instance_globals_l g_init_l = { /* dbridge.c */ { { 0 } }, /* lastseentyp */ { UNDEFINED_VALUES }, /* level_info */ - { {0}, {0}, {0}, NULL, NULL, NULL, NULL, NULL, {0} }, /* level */ + { { {0}, {0} }, + { {0}, {0} }, + { {0}, {0} }, + NULL, NULL, NULL, NULL, NULL, {0} }, /* level */ #if defined(UNIX) || defined(VMS) 0, /* locknum */ #endif