]> skyeroc.xyz Git - dgamelaunch/commitdiff
make error message like the others
authorJoshua Kwan <joshk@triplehelix.org>
Sun, 1 Feb 2004 20:45:55 +0000 (20:45 +0000)
committerJoshua Kwan <joshk@triplehelix.org>
Sun, 1 Feb 2004 20:45:55 +0000 (20:45 +0000)
git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@208 db0b04b0-f4d1-0310-9a6d-de3e77497b0e

config.l

index e4ad02eb1cace0300070dde2d9171069c17fdeef..4f49f85f725e940153e61dbad53528cb8bd61ffb 100644 (file)
--- 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}                { }