Address review comment.

This commit is contained in:
David Anderson 2014-07-12 21:21:07 -07:00
parent 5dd5b5131b
commit 71fb0d1d18

View File

@ -86,10 +86,10 @@ static short lastfile;
* the error reporting is enabled only in the second pass (and only when
* actually producing output). Fatal errors may never be ignored.
*/
int is_fatal = (number < 160 || number > 200);
if (errflag && is_fatal)
int not_fatal = (number < 160 || number >= 200);
if (errflag && not_fatal)
return 0;
if (sc_status != statWRITE && is_fatal) {
if (sc_status != statWRITE && not_fatal) {
if (!sc_err_status)
return 0;
}