H316: Compiler warning cleanup

Fix inconsistent statement indentations.
This commit is contained in:
Mark Pizzolato 2020-10-19 12:28:25 -07:00
parent f1a513b8bf
commit 962552b213
2 changed files with 6 additions and 6 deletions

View file

@ -1105,10 +1105,10 @@ if (((addr == 0) || (addr >= 020)) && MEM_ADDR_OK (addr))
M[addr] = val; M[addr] = val;
if (addr == M_XR) /* write XR loc? */ if (addr == M_XR) /* write XR loc? */
XR = val; XR = val;
// [RLA] Implement "break on memory write" ... // [RLA] Implement "break on memory write" ...
if (sim_brk_summ && sim_brk_test (addr, SWMASK ('W'))) if (sim_brk_summ && sim_brk_test (addr, SWMASK ('W')))
return STOP_IBKPT; return STOP_IBKPT;
else else
return SCPE_OK; return SCPE_OK;
} }