commit 4eda2c207ed04ee707ff37e1a87ddd73d1c4d180
Author: Roberto E. Vargas Caballero <[email protected]>
AuthorDate: Sat Jul 18 18:33:50 2015 +0200
Commit: Roberto E. Vargas Caballero <[email protected]>
CommitDate: Sat Jul 18 18:33:50 2015 +0200
Small style change in cpp.c
diff --git a/cc1/cpp.c b/cc1/cpp.c
index e6724c1..59ab331 100644
--- a/cc1/cpp.c
+++ b/cc1/cpp.c
@@ -418,7 +418,7 @@ line(void)
if (yytoken == EOFTOK)
return;
- if (*yytext != '\"'|| yylen == 1)
+ if (*yytext != '\"' || yylen == 1)
error("second parameter of #line is not a valid filename");
free(input->fname);
input->fname = xstrdup(yylval.sym->u.s);