diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-03-31 14:58:59 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-03-31 14:59:09 +0200 |
commit | 1cc318bfe68d89015d8aa0d98e5e94fe72ec892a (patch) | |
tree | a18fd52d15af4ca63bfb7b01d9c1eef04a170fdc /soltools | |
parent | 93657bdb7b0f20cb2d868bac024a0f042a9a90cb (diff) |
Typo #elsif -> #elif
Change-Id: I95d4dc2a3364172e8917d0a029564e9114943148
Diffstat (limited to 'soltools')
-rw-r--r-- | soltools/cpp/_eval.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/soltools/cpp/_eval.c b/soltools/cpp/_eval.c index 22cb9adbfbb0..f10fa7988bb5 100644 --- a/soltools/cpp/_eval.c +++ b/soltools/cpp/_eval.c @@ -313,7 +313,7 @@ long *op++ = UMINUS; if (tp->type == STAR || tp->type == AND) { - error(ERROR, "Illegal operator * or & in #if/#elsif"); + error(ERROR, "Illegal operator * or & in #if/#elif"); return 0; } continue; @@ -380,7 +380,7 @@ long /* fall through */ default: - error(ERROR, "Bad operator (%t) in #if/#elsif", tp); + error(ERROR, "Bad operator (%t) in #if/#elif", tp); return 0; } } @@ -390,14 +390,14 @@ long return 0; if (op != &ops[1] || vp != &vals[1]) { - error(ERROR, "Botch in #if/#elsif"); + error(ERROR, "Botch in #if/#elif"); return 0; } if (vals[0].type == UND) error(ERROR, "Undefined expression value"); return vals[0].val; syntax: - error(ERROR, "Syntax error in #if/#elsif"); + error(ERROR, "Syntax error in #if/#elif"); return 0; } @@ -679,7 +679,7 @@ struct value else { error(ERROR, - "Bad number %t in #if/#elsif", tp); + "Bad number %t in #if/#elif", tp); break; } } @@ -761,7 +761,7 @@ struct value break; case STRING: - error(ERROR, "String in #if/#elsif"); + error(ERROR, "String in #if/#elif"); break; } return v; |