From 44c444d6389d2342dca94f5fbe8c9de540a83c7b Mon Sep 17 00:00:00 2001 From: Michael Jarvis Date: Thu, 1 Jun 2017 22:47:47 -0500 Subject: [PATCH] added braces around initialization of subobjects for clarity --- misc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc.c b/misc.c index c16a300..3aca465 100644 --- a/misc.c +++ b/misc.c @@ -937,7 +937,7 @@ L10: if(MAP2[1] == 0)MPINIT(); #undef MPINIT void fMPINIT(void) { long FIRST, I, J, LAST, VAL; -static long RUNS[7][2] = {32,34, 39,46, 65,90, 97,122, 37,37, 48,57, 0,126}; +static long RUNS[7][2] = { {32,34}, {39,46}, {65,90}, {97,122}, {37,37}, {48,57}, {0,126} }; for (I=1; I<=128; I++) { -- 2.31.1