From 90e6e811c9d16012ac397f3b920986edee3db037 Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Wed, 16 Jul 2008 14:38:24 -0700 Subject: [PATCH] preproc.c: fix %ifn, %elifn The sense of %ifn and %elifn was reversed due to a bogus nonstandard return sequence. --- preproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/preproc.c b/preproc.c index d8a96eb2..01aa351b 100644 --- a/preproc.c +++ b/preproc.c @@ -1712,7 +1712,7 @@ static bool if_condition(Token * tline, enum preproc_token ct) goto fail; } j = reloc_value(evalresult) != 0; - return j; + break; default: error(ERR_FATAL, -- 2.11.4.GIT