tccpp: Add missing bracket in an error message
This commit is contained in:
parent
4d05a6319d
commit
95bc36a149
1 changed files with 1 additions and 1 deletions
2
tccpp.c
2
tccpp.c
|
|
@ -90,7 +90,7 @@ static void macro_subst(
|
|||
ST_FUNC void skip(int c)
|
||||
{
|
||||
if (tok != c)
|
||||
error("'%c' expected (got \"%s\"", c, get_tok_str(tok, NULL));
|
||||
error("'%c' expected (got \"%s\")", c, get_tok_str(tok, NULL));
|
||||
next();
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue