shithub: scc

Download patch

ref: f00413b6a611d855fc398604c10a5b8c0afa596b
parent: 9f2e3f1c43c67f3ae3cca01bced10b670600c88c
author: Hiltjo Posthuma <hiltjo@codemadness.org>
date: Fri Jul 17 16:29:58 EDT 2015

fix missing ;

--- a/cc1/cpp.c
+++ b/cc1/cpp.c
@@ -447,7 +447,7 @@
 
 	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");