From e2004aaec441c79eaeee21bc2fa212ba0c013a5e Mon Sep 17 00:00:00 2001 From: Abs62 Date: Mon, 20 Jun 2011 08:26:27 +0400 Subject: [PATCH] Correction of previous commits --- dprintf.hh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dprintf.hh b/dprintf.hh index b09dbada..cf2131c4 100644 --- a/dprintf.hh +++ b/dprintf.hh @@ -5,8 +5,8 @@ #define DPRINTF(...) #define FDPRINTF(...) #else -#define DPRINTF(...) { printf(__VA_ARGS__); } -#define FDPRINTF(...) { fprintf(__VA_ARGS__); } +#define DPRINTF(...) printf(__VA_ARGS__) +#define FDPRINTF(...) fprintf(__VA_ARGS__) #endif #endif // __DPRINTF_HH_INCLUDED__