Skip to content

Commit 6392f2a

Browse files
committed
Try to silence "-Wmissing-braces" complaints in rmgrdesc.c.
Per buildfarm member lapwing. https://postgr.es/m/20220407065640.xljttqcs46k4lyvr@alap3.anarazel.de
1 parent 5dc0418 commit 6392f2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/pg_waldump/rmgrdesc.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ static const RmgrDescData RmgrDescTable[RM_N_BUILTIN_IDS] = {
4141

4242
#define CUSTOM_NUMERIC_NAME_LEN sizeof("custom###")
4343

44-
static char CustomNumericNames[RM_N_CUSTOM_IDS][CUSTOM_NUMERIC_NAME_LEN] = {0};
45-
static RmgrDescData CustomRmgrDesc[RM_N_CUSTOM_IDS] = {0};
44+
static char CustomNumericNames[RM_N_CUSTOM_IDS][CUSTOM_NUMERIC_NAME_LEN] = {{0}};
45+
static RmgrDescData CustomRmgrDesc[RM_N_CUSTOM_IDS] = {{0}};
4646
static bool CustomRmgrDescInitialized = false;
4747

4848
/*

0 commit comments

Comments
 (0)