commit f00413b6a611d855fc398604c10a5b8c0afa596b
Author: Hiltjo Posthuma <[email protected]>
AuthorDate: Fri Jul 17 20:29:58 2015 +0200
Commit: Roberto E. Vargas Caballero <[email protected]>
CommitDate: Fri Jul 17 20:58:50 2015 +0200
fix missing ;
diff --git a/cc1/cpp.c b/cc1/cpp.c
index 3e10e2e..4df8244 100644
--- a/cc1/cpp.c
+++ b/cc1/cpp.c
@@ -447,7 +447,7 @@ ifclause(int isdef)
if (cppctx == NR_COND-1)
error("too much nesting levels of conditional inclusion");
- n = cppctx++
+ n = cppctx++;
if (yytoken != IDEN) {
error("no macro name given in #%s directive",
(isdef) ? "ifdef" : "ifndef");