From: Wolfgang (Blub) Bumiller Date: Tue, 14 Aug 2012 10:15:05 +0000 (+0200) Subject: oops... removing wrongly placed semicolons X-Git-Tag: 0.1-rc1~319 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=965331f315810f54aef2ad63e221bcf993598afc;p=xonotic%2Fgmqcc.git oops... removing wrongly placed semicolons --- diff --git a/error.c b/error.c index 889af6b..daac62b 100644 --- a/error.c +++ b/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);