make error message like the others

git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@208 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
Joshua Kwan 2004-02-01 20:45:55 +00:00
parent ff36a733cf
commit d136a3db4a
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ COMMENT ^#.*
{MALSTRING} {
/* yytext already contains a newline, no need for one here */
fprintf(stderr, "%s: unterminated string constant at line %d, start column %d: %s\n", config, line, col - yyleng + 1, yytext);
fprintf(stderr, "%s:%d:%d: unterminated string constant: %s\n", config, line, col - yyleng + 1, yytext);
}
{WHITE} { }