mirror of
https://github.com/simh/simh.git
synced 2026-05-01 05:48:35 +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:
@@ -363,7 +363,7 @@ if (ln >= 0) { /* got one? */
|
||||
tmxr_poll_rx (&mux_desc); /* poll for input */
|
||||
for (ln = 0; ln < MUX_NUMLIN; ln++) { /* loop thru lines */
|
||||
if (mux_ldsc[ln].conn) { /* connected? */
|
||||
if (c = tmxr_getc_ln (&mux_ldsc[ln])) { /* get char */
|
||||
if ((c = tmxr_getc_ln (&mux_ldsc[ln]))) { /* get char */
|
||||
if (mux_sta[ln] & MUX_SCHP) /* already got one? */
|
||||
mux_sta[ln] = mux_sta[ln] | MUX_SOVR; /* overrun */
|
||||
else mux_sta[ln] = mux_sta[ln] | MUX_SCHP; /* char pending */
|
||||
|
||||
Reference in New Issue
Block a user