From: Wolfgang (Blub) Bumiller Date: Tue, 14 Aug 2012 09:54:48 +0000 (+0200) Subject: Add a colon after the linenumber X-Git-Tag: 0.1-rc1~322 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=0a27cc13c86da8165cbc0559153b8f6307002e90;p=xonotic%2Fgmqcc.git Add a colon after the linenumber --- diff --git a/error.c b/error.c index 8fbd91f..6e09f39 100644 --- 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");