Fix a bunch of -Wempty-body warnings reported by clang

Many of these were real bugs, like:

if (cond);
   do_something

etc...

Others were just cosmetic - like placing the ';' on a separate line to
make the intention clear.
This commit is contained in:
Jon Trulson
2021-12-11 13:10:24 -07:00
parent 18e25ce273
commit dda11f0e38
11 changed files with 28 additions and 18 deletions

View File

@@ -539,8 +539,9 @@ do_calc(void) /* Perform arithmetic calculation and display result. */
mpcdm(&dres, v->MPresult) ;
}
else if (IS_KEY(v->cur_op, KEY_EQ)) /* do nothing. */ ; /* Equals */
else if (IS_KEY(v->cur_op, KEY_EQ)) /* Equals */
; /* do nothing. */
show_display(v->MPresult) ;
if (!(IS_KEY(v->current, KEY_EQ) && IS_KEY(v->old_cal_value, KEY_EQ)))