scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 4eda2c207ed04ee707ff37e1a87ddd73d1c4d180
parent 5dc96d4078a27015fd1277d7779410a0498cbe2b
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Sat, 18 Jul 2015 18:33:50 +0200

Small style change in cpp.c

Diffstat:
Mcc1/cpp.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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);