From da93e81d03d22b7b86c3abebbee312c5cd466d10 Mon Sep 17 00:00:00 2001 From: Michal Zima Date: Tue, 15 Sep 2009 20:04:27 +0200 Subject: Fixed error in 'debug' macro in msg.h --- src/base/msg.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/base/msg.h b/src/base/msg.h index 95a189b..a2f77e9 100644 --- a/src/base/msg.h +++ b/src/base/msg.h @@ -8,7 +8,7 @@ #endif /* DEBUG * */ #ifdef DEBUG -#define debug(msg,arg...) fprintf(stdout, "%s ", _("[Debug]")); fprintf(stdout, _(msg) "\n", ##arg) +#define debug(msg,arg...) fprintf(stdout, "%s ", _("[Debug]")); fprintf(stdout, _(msg), ##arg); fprintf(stdout, "\n") #else /* DEBUG */ #define debug(msg,arg...) #endif /* DEBUG */ -- cgit v1.2.3