mirror of
https://github.com/simh/simh.git
synced 2026-04-24 19:33:40 +00:00
Cleanup for warning messages produced by the clang C compiler. Mostly adding parentheses in conditional assignments and clarification parentheses in complex boolean expressions.
This commit is contained in:
@@ -235,14 +235,14 @@ switch (fnc) { /* case function */
|
||||
case IO_DISC: /* disconnect */
|
||||
sim_cancel (uptr); /* no more xfr's */
|
||||
if (inst & DEV_OUT) { /* write? */
|
||||
if (r = mt_wrend (inst)) /* end record */
|
||||
if ((r = mt_wrend (inst))) /* end record */
|
||||
return r;
|
||||
}
|
||||
break;
|
||||
|
||||
case IO_WREOR: /* write eor */
|
||||
chan_set_flag (mt_dib.chan, CHF_EOR); /* set eor flg */
|
||||
if (r = mt_wrend (inst)) /* end record */
|
||||
if ((r = mt_wrend (inst))) /* end record */
|
||||
return r;
|
||||
mt_gap = 1; /* in gap */
|
||||
sim_activate (uptr, mt_gtime); /* start timer */
|
||||
|
||||
Reference in New Issue
Block a user