]> de.git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
Add a colon after the linenumber
authorWolfgang (Blub) Bumiller <blub@speed.at>
Tue, 14 Aug 2012 09:54:48 +0000 (11:54 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Tue, 14 Aug 2012 09:54:48 +0000 (11:54 +0200)
error.c

diff --git a/error.c b/error.c
index 8fbd91fd1c4c5096ef92b6d97516837623c47888..6e09f396e2aacac131345255d55de266706d7e18 100644 (file)
--- a/error.c
+++ b/error.c
@@ -42,7 +42,7 @@ void vprintmsg(int level, const char *name, size_t line, char *errtype, const ch
 #ifndef WIN32
     fprintf (stderr, "\033[0;%dm%s:%d \033[0;%dm%s: \033[0m", CON_CYAN, name, (int)line, levelcolor[level], errtype);
 #else
-    fprintf (stderr, "%s:%d %s: ", name, line, errtype);
+    fprintf (stderr, "%s:%d: %s: ", name, line, errtype);
 #endif
     vfprintf(stderr, msg, ap);
     fprintf (stderr, "\n");