https://git.reactos.org/?p=reactos.git;a=commitdiff;h=addfb61d8b958d08731e6…
commit addfb61d8b958d08731e6c5468416852c4319eb3
Author: Serge Gautherie <32623169+SergeGautherie(a)users.noreply.github.com>
AuthorDate: Thu Jun 6 01:49:18 2019 +0200
Commit: Hermès BÉLUSCA - MAÏTO <hermes.belusca-maito(a)reactos.org>
CommitDate: Thu Jun 6 01:49:18 2019 +0200
[NTDLL_VISTA] Check _DEBUG with #ifdef, not #if (#1615)
---
dll/win32/ntdll_vista/condvar.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dll/win32/ntdll_vista/condvar.c b/dll/win32/ntdll_vista/condvar.c
index f14906d97d6..edbe074cd99 100644
--- a/dll/win32/ntdll_vista/condvar.c
+++ b/dll/win32/ntdll_vista/condvar.c
@@ -429,7 +429,7 @@ InternalSleep(IN OUT PRTL_CONDITION_VARIABLE ConditionVariable,
}
}
-#if _DEBUG
+#ifdef _DEBUG
/* Clear OwnEntry to aid in detecting bugs. */
RtlZeroMemory(&OwnEntry, sizeof(OwnEntry));
#endif