From 7559937efb5d8a4cbbf03b0d0b606f699f5b2229 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Fri, 29 Jul 2005 18:11:04 +0000 Subject: [PATCH] Fix definiton of DPRINT1 for non-DBG build. svn path=/trunk/; revision=16879 --- reactos/include/reactos/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/reactos/debug.h b/reactos/include/reactos/debug.h index 87b3f25731a..369a945e2c3 100644 --- a/reactos/include/reactos/debug.h +++ b/reactos/include/reactos/debug.h @@ -70,7 +70,7 @@ #else /* On non-debug builds, we never show these */ - #define DPRINT1 do { if(0) { DbgPrint(__VA_ARGS__); } } while(0) + #define DPRINT1(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0) #define DPRINT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0) #define CHECKPOINT1 #define CHECKPOINT