mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-03-22 10:41:43 +00:00
Add a colon after the linenumber
This commit is contained in:
parent
104e9bce92
commit
0a27cc13c8
1 changed files with 1 additions and 1 deletions
2
error.c
2
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");
|
||||
|
|
Loading…
Reference in a new issue