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:
@@ -768,7 +768,8 @@ TblTableRowEnd(
|
||||
if ((at = FindAttValByName(e, "ROWSEP"))) {
|
||||
if (at[0] == '1') fprintf(fp, "_\n");
|
||||
}
|
||||
else if (rowsep) /* fprintf(fp, "_\n") */ ;
|
||||
else if (rowsep) /* fprintf(fp, "_\n") */
|
||||
;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user