Author: dgorbachev Date: Tue Feb 9 21:08:06 2010 New Revision: 45538
URL: http://svn.reactos.org/svn/reactos?rev=45538&view=rev Log: Fix REL build.
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 [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/debug.c [iso-8859-1] Tue Feb 9 21:08:06 2010 @@ -21,7 +21,7 @@
#include <debug.h>
-#if defined(DBG) && !defined(_M_ARM) +#if DBG && !defined(_M_ARM)
//#define DEBUG_ALL //#define DEBUG_INIFILE
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 [iso-8859-1] (original) +++ trunk/reactos/boot/freeldr/freeldr/include/debug.h [iso-8859-1] Tue Feb 9 21:08:06 2010 @@ -39,7 +39,7 @@ extern char* g_file; extern int g_line;
-#if defined(DBG) && !defined(_M_ARM) +#if DBG && !defined(_M_ARM)
VOID DbgPrintMask(ULONG Mask, char *format, ...); VOID DebugInit(VOID);