mirror of
https://github.com/simh/simh.git
synced 2026-02-12 19:08:41 +00:00
Compiler warning cleanup
This commit is contained in:
@@ -224,7 +224,7 @@ uint32 dev_map[64][NUM_CHAN];
|
||||
|
||||
/* dev_dsp maps device and channel numbers to dispatch routines */
|
||||
|
||||
t_stat (*dev_dsp[64][NUM_CHAN])() = { NULL };
|
||||
t_stat (*dev_dsp[64][NUM_CHAN])() = { {NULL} };
|
||||
|
||||
/* dev3_dsp maps system device numbers to dispatch routines */
|
||||
|
||||
|
||||
@@ -112,7 +112,7 @@ uint32 mux_tps = 100; /* polls/second */
|
||||
uint32 mux_scan = 0; /* scanner */
|
||||
uint32 mux_slck = 0; /* scanner locked */
|
||||
|
||||
TMLN mux_ldsc[MUX_LINES] = { 0 }; /* line descriptors */
|
||||
TMLN mux_ldsc[MUX_LINES] = { {0} }; /* line descriptors */
|
||||
TMXR mux_desc = { MUX_LINES, 0, 0, mux_ldsc }; /* mux descriptor */
|
||||
|
||||
t_stat mux (uint32 fnc, uint32 inst, uint32 *dat);
|
||||
|
||||
Reference in New Issue
Block a user