fix compilation warning.

match the arguments count.
This commit is contained in:
Hermet Park 2016-01-08 13:17:06 +09:00
parent 404adc74c0
commit 8de253bb6a
1 changed files with 2 additions and 2 deletions

View File

@ -45,11 +45,11 @@ ID [a-z][a-z0-9]*
return (char) yytext[0];}
"(" {
E(2, "(\n", NULL);
E(2, "(\n", NULL, 0);
return OBRAK;
}
")" {
E(2, ")\n", NULL);
E(2, ")\n", NULL, 0);
return CBRAK;
}