mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2024-11-24 04:41:25 +00:00
oops... removing wrongly placed semicolons
This commit is contained in:
parent
d824645019
commit
965331f315
1 changed files with 2 additions and 2 deletions
4
error.c
4
error.c
|
@ -37,7 +37,7 @@ int levelcolor[] = {
|
|||
};
|
||||
#endif
|
||||
|
||||
void vprintmsg(int level, const char *name, size_t line, const char *msgtype, const char *msg, va_list ap);
|
||||
void vprintmsg(int level, const char *name, size_t line, const char *msgtype, 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);
|
||||
|
@ -48,7 +48,7 @@ void vprintmsg(int level, const char *name, size_t line, const char *msgtype, co
|
|||
fprintf (stderr, "\n");
|
||||
}
|
||||
|
||||
void printmsg(int level, const char *name, size_t line, const char *msgtype, const char *msg, ...);
|
||||
void printmsg(int level, const char *name, size_t line, const char *msgtype, const char *msg, ...)
|
||||
{
|
||||
va_list va;
|
||||
va_start(va, msg);
|
||||
|
|
Loading…
Reference in a new issue