tccpp: Add missing bracket in an error message

master
Detlef Riekenberg 2010-03-31 00:42:39 +02:00
parent 4d05a6319d
commit 95bc36a149
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}