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_)