Skip to content

Commit cca78c7

Browse files
author
Dmitry Gorbachev
committed
Fix REL build.
svn path=/trunk/; revision=45538
1 parent d4cca54 commit cca78c7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

reactos/boot/freeldr/freeldr/debug.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
#include <debug.h>
2323

24-
#if defined(DBG) && !defined(_M_ARM)
24+
#if DBG && !defined(_M_ARM)
2525

2626
//#define DEBUG_ALL
2727
//#define DEBUG_INIFILE

reactos/boot/freeldr/freeldr/include/debug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
extern char* g_file;
4040
extern int g_line;
4141

42-
#if defined(DBG) && !defined(_M_ARM)
42+
#if DBG && !defined(_M_ARM)
4343

4444
VOID DbgPrintMask(ULONG Mask, char *format, ...);
4545
VOID DebugInit(VOID);

0 commit comments

Comments
 (0)