From 75f05086d04a90c3dcdcdd31bf79d7033708e3e0 Mon Sep 17 00:00:00 2001 From: Matthias Hopf Date: Tue, 23 Oct 2007 15:39:23 +0200 Subject: [PATCH] Get rid of unnecessary GNU extended variadic macro. --- include/os.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/os.h b/include/os.h index d91526786..597ecd742 100644 --- a/include/os.h +++ b/include/os.h @@ -517,7 +517,7 @@ __attribute((noreturn)) #ifdef DEBUG #define DebugF ErrorF #else -#define DebugF(x, ...) /* */ +#define DebugF(...) /* */ #endif extern void VErrorF(const char *f, va_list args);