[NTDLL_VISTA] Check _DEBUG with #ifdef, not #if (#1615)

This commit is contained in:
Serge Gautherie 2019-06-06 01:49:18 +02:00 committed by Hermès BÉLUSCA - MAÏTO
parent 46259092f9
commit addfb61d8b

View file

@ -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