mirror of
https://github.com/simh/simh.git
synced 2026-04-29 05:05:14 +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:
@@ -204,7 +204,7 @@ switch (fnc) { /* case on function */
|
||||
case IO_READ:
|
||||
xfr_req = xfr_req & ~XFR_DSK; /* clr xfr req */
|
||||
if (dsk_bptr >= dsk_blnt) { /* no more data? */
|
||||
if (r = dsk_read_buf (inst)) /* read sector */
|
||||
if ((r = dsk_read_buf (inst))) /* read sector */
|
||||
return r;
|
||||
}
|
||||
dsk_wptr = dsk_bptr >> 2; /* word pointer */
|
||||
@@ -219,7 +219,7 @@ switch (fnc) { /* case on function */
|
||||
case IO_WRITE:
|
||||
xfr_req = xfr_req & ~XFR_DSK; /* clr xfr req */
|
||||
if (dsk_bptr >= (DSK_NUMWD * 4)) { /* full? */
|
||||
if (r = dsk_write_buf (inst)) /* write sector */
|
||||
if ((r = dsk_write_buf (inst))) /* write sector */
|
||||
return r;
|
||||
}
|
||||
dsk_wptr = dsk_bptr >> 2; /* word pointer */
|
||||
|
||||
Reference in New Issue
Block a user