mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 16:52:15 +00:00
[BOOTLIB] Check DBG with #if, not #ifdef (#1621)
This commit is contained in:
parent
3a98d96eac
commit
7eead93569
1 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ BlStatusPrint (
|
||||||
|
|
||||||
/* Check if the boot debugger is enabled */
|
/* Check if the boot debugger is enabled */
|
||||||
if (BlBdDebuggerEnabled()
|
if (BlBdDebuggerEnabled()
|
||||||
#if (defined(DBG))
|
#if DBG
|
||||||
|| TRUE
|
|| TRUE
|
||||||
#endif
|
#endif
|
||||||
)
|
)
|
||||||
|
@ -94,7 +94,7 @@ BlStatusPrint (
|
||||||
/* Print the string out into a buffer */
|
/* Print the string out into a buffer */
|
||||||
if (vswprintf(BlScratchBuffer, Format, va) > 0)
|
if (vswprintf(BlScratchBuffer, Format, va) > 0)
|
||||||
{
|
{
|
||||||
#if defined(DBG)
|
#if DBG
|
||||||
EfiPrintf(BlScratchBuffer);
|
EfiPrintf(BlScratchBuffer);
|
||||||
EfiPrintf(L"\r\n");
|
EfiPrintf(L"\r\n");
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue