From 5ab1fd6263cd7d5c36b815fb493ff8b2b38b54b1 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sat, 7 Jan 2017 15:31:16 -0800 Subject: [PATCH] CONSOLE: Fix minor compiler warning. --- sim_console.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sim_console.c b/sim_console.c index 71d2cfb6..d8cef948 100644 --- a/sim_console.c +++ b/sim_console.c @@ -178,7 +178,7 @@ static t_stat sim_con_reset (DEVICE *dptr); /* console reset rou static t_stat sim_con_attach (UNIT *uptr, CONST char *ptr); /* console attach routine (save,restore) */ static t_stat sim_con_detach (UNIT *uptr); /* console detach routine (save,restore) */ -UNIT sim_con_units[2] = { UDATA (&sim_con_poll_svc, UNIT_ATTABLE, 0) }; /* console connection unit */ +UNIT sim_con_units[2] = {{ UDATA (&sim_con_poll_svc, UNIT_ATTABLE, 0)}}; /* console connection unit */ #define sim_con_unit sim_con_units[0] /* debugging bitmaps */