Author: hpoussin Date: Sun May 20 00:45:17 2007 New Revision: 26842
URL: http://svn.reactos.org/svn/reactos?rev=26842&view=rev Log: Another try to fix release builds to please Colin_Finck...
Modified: trunk/reactos/boot/freeldr/freeldr/debug.c trunk/reactos/boot/freeldr/freeldr/include/debug.h
Modified: trunk/reactos/boot/freeldr/freeldr/debug.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/debug.... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/debug.c (original) +++ trunk/reactos/boot/freeldr/freeldr/debug.c Sun May 20 00:45:17 2007 @@ -356,4 +356,10 @@ } }
+#else + +VOID DebugPrint(ULONG Mask, char *format, ...) +{ +} + #endif // defined DBG
Modified: trunk/reactos/boot/freeldr/freeldr/include/debug.h URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/includ... ============================================================================== --- trunk/reactos/boot/freeldr/freeldr/include/debug.h (original) +++ trunk/reactos/boot/freeldr/freeldr/include/debug.h Sun May 20 00:45:17 2007 @@ -76,8 +76,6 @@
#else
- inline VOID DebugPrint(ULONG Mask, char *format, ...) {} - #define DebugInit() #define DbgPrint(_x_) { if (0) DebugPrint _x_; } #define DPRINT1(_x_) { if (0) printf _x_; }