From 94e0b70c25c69d036fe70304eb818647f24eb0e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Mon, 14 May 2007 20:28:26 +0000 Subject: [PATCH] Try to fix release build svn path=/trunk/; revision=26785 --- reactos/boot/freeldr/freeldr/include/debug.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/boot/freeldr/freeldr/include/debug.h b/reactos/boot/freeldr/freeldr/include/debug.h index 8be4b010960..3c45eeec522 100644 --- a/reactos/boot/freeldr/freeldr/include/debug.h +++ b/reactos/boot/freeldr/freeldr/include/debug.h @@ -76,8 +76,10 @@ void MEMORY_WRITE_BREAKPOINT4(unsigned long addr); #else + inline VOID DebugPrint(ULONG Mask, char *format, ...) {} + #define DebugInit() - #define DbgPrint(_x_) { if (0) printf _x_; } + #define DbgPrint(_x_) { if (0) DebugPrint _x_; } #define DPRINT1(_x_) { if (0) printf _x_; } #define BugCheck(_x_) #define DbgDumpBuffer(_x_, _y_, _z_)