[ros-diffs] [dgorbachev] 45538: Fix REL build.

dgorbachev at svn.reactos.org dgorbachev at svn.reactos.org
Tue Feb 9 21:08:06 CET 2010


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.c?rev=45538&r1=45537&r2=45538&view=diff
==============================================================================
--- 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/include/debug.h?rev=45538&r1=45537&r2=45538&view=diff
==============================================================================
--- 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);




More information about the Ros-diffs mailing list