diff --git a/reactos/boot/freeldr/freeldr/debug.c b/reactos/boot/freeldr/freeldr/debug.c index 5496c03d5ad..6aebbd18252 100644 --- a/reactos/boot/freeldr/freeldr/debug.c +++ b/reactos/boot/freeldr/freeldr/debug.c @@ -21,7 +21,7 @@ #include -#if defined(DBG) && !defined(_M_ARM) +#if DBG && !defined(_M_ARM) //#define DEBUG_ALL //#define DEBUG_INIFILE diff --git a/reactos/boot/freeldr/freeldr/include/debug.h b/reactos/boot/freeldr/freeldr/include/debug.h index e8f376e5555..c7d57f6fb49 100644 --- a/reactos/boot/freeldr/freeldr/include/debug.h +++ b/reactos/boot/freeldr/freeldr/include/debug.h @@ -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);