mirror of
https://github.com/simh/simh.git
synced 2026-01-25 19:56:25 +00:00
Compiler suggested cleanups.
This commit is contained in:
@@ -5925,7 +5925,7 @@ static const int32 boot_rom[] = {
|
||||
|
||||
t_stat cpu_boot (int32 unitno, DEVICE *dptr)
|
||||
{
|
||||
int32 i;
|
||||
size_t i;
|
||||
extern int32 saved_PC;
|
||||
|
||||
for (i = 0; i < BOOT_LEN; i++) M[BOOT_START + i] = boot_rom[i];
|
||||
|
||||
@@ -133,7 +133,7 @@ int32 qty_auto = 0 ; /* QTY auto disconnect
|
||||
int32 qty_polls = 0 ; /* total 'qty_svc' polls */
|
||||
|
||||
|
||||
TMLN qty_ldsc[ QTY_MAX ] = { 0 } ; /* QTY line descriptors */
|
||||
TMLN qty_ldsc[ QTY_MAX ] = { {0} } ; /* QTY line descriptors */
|
||||
TMXR qty_desc = { QTY_MAX, 0, 0, qty_ldsc } ; /* mux descriptor */
|
||||
int32 qty_status[ QTY_MAX ] = { 0 } ; /* QTY line status */
|
||||
/* (must be at least 32 bits) */
|
||||
|
||||
Reference in New Issue
Block a user