Fix definiton of DPRINT1 for non-DBG build.
Modified: trunk/reactos/include/reactos/debug.h
_____
Modified: trunk/reactos/include/reactos/debug.h
--- trunk/reactos/include/reactos/debug.h 2005-07-29 18:01:01 UTC
(rev 16878)
+++ trunk/reactos/include/reactos/debug.h 2005-07-29 18:11:04 UTC
(rev 16879)
@@ -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
Show replies by date