From: Joshua Kwan Date: Sun, 1 Feb 2004 20:45:55 +0000 (+0000) Subject: make error message like the others X-Git-Tag: v1.6.1-roc-dev~491 X-Git-Url: https://skyeroc.xyz/gitweb/?a=commitdiff_plain;h=d136a3db4a7d5885c28b46a07e5807b46f833803;p=dgamelaunch make error message like the others git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@208 db0b04b0-f4d1-0310-9a6d-de3e77497b0e --- diff --git a/config.l b/config.l index e4ad02e..4f49f85 100644 --- a/config.l +++ b/config.l @@ -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} { }