]> de.git.xonotic.org Git - xonotic/gmqcc.git/commitdiff
oops... removing wrongly placed semicolons
authorWolfgang (Blub) Bumiller <blub@speed.at>
Tue, 14 Aug 2012 10:15:05 +0000 (12:15 +0200)
committerWolfgang (Blub) Bumiller <blub@speed.at>
Tue, 14 Aug 2012 10:15:05 +0000 (12:15 +0200)
error.c

diff --git a/error.c b/error.c
index 889af6bd2ca6c3994c7bea9b618b4dd18d66dc93..daac62b9ef3cf7b34c046714310c6eaa2d70bf3c 100644 (file)
--- 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);