mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
And a colon for the colored version too ...
This commit is contained in:
parent
0a27cc13c8
commit
5f0111c114
1 changed files with 1 additions and 1 deletions
2
error.c
2
error.c
|
@ -40,7 +40,7 @@ int levelcolor[] = {
|
|||
void vprintmsg(int level, const char *name, size_t line, char *errtype, const char *msg, va_list ap)
|
||||
{
|
||||
#ifndef WIN32
|
||||
fprintf (stderr, "\033[0;%dm%s:%d \033[0;%dm%s: \033[0m", CON_CYAN, name, (int)line, levelcolor[level], errtype);
|
||||
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);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue