CONSOLE: Fix minor compiler warning.

This commit is contained in:
Mark Pizzolato 2017-01-07 15:31:16 -08:00
parent 39352914d0
commit 5ab1fd6263

View file

@ -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_attach (UNIT *uptr, CONST char *ptr); /* console attach routine (save,restore) */
static t_stat sim_con_detach (UNIT *uptr); /* console detach 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] #define sim_con_unit sim_con_units[0]
/* debugging bitmaps */ /* debugging bitmaps */