From ecc5e30ce68bb68a14d9ffa5c56bd85c316edb26 Mon Sep 17 00:00:00 2001 From: Sylvain Petreolle Date: Tue, 2 Feb 2016 20:51:50 +0000 Subject: [PATCH] MSVC: Properly define debug functions for release builds. svn path=/trunk/; revision=70677 --- reactos/include/reactos/debug.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/reactos/include/reactos/debug.h b/reactos/include/reactos/debug.h index 6423a1834ef..69297f35382 100644 --- a/reactos/include/reactos/debug.h +++ b/reactos/include/reactos/debug.h @@ -137,15 +137,15 @@ RtlAssert( #define UNIMPLEMENTED - #define ERR_ __noop - #define WARN_ __noop - #define TRACE_ __noop - #define INFO_ __noop + #define ERR_(ch, ...) __noop + #define WARN_(ch, ...) __noop + #define TRACE_(ch, ...) __noop + #define INFO_(ch, ...) __noop - #define ERR__ __noop - #define WARN__ __noop - #define TRACE__ __noop - #define INFO__ __noop + #define ERR__(ch, ...) __noop + #define WARN__(ch, ...) __noop + #define TRACE__(ch, ...) __noop + #define INFO__(ch, ...) __noop #else #define DPRINT1(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0) #define DPRINT(...) do { if(0) { DbgPrint(__VA_ARGS__); } } while(0)