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