Author: hpoussin
Date: Tue May 15 00:28:26 2007
New Revision: 26785
URL:
http://svn.reactos.org/svn/reactos?rev=26785&view=rev
Log:
Try to fix release build
Modified:
trunk/reactos/boot/freeldr/freeldr/include/debug.h
Modified: trunk/reactos/boot/freeldr/freeldr/include/debug.h
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/inclu…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/include/debug.h (original)
+++ trunk/reactos/boot/freeldr/freeldr/include/debug.h Tue May 15 00:28:26 2007
@@ -76,8 +76,10 @@
#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_)