ntdll: Make an error message a proper ERR.
This commit is contained in:
parent
38766d4d19
commit
70f4b2d502
|
@ -140,7 +140,7 @@ void WINAPI RtlDeleteResource(LPRTL_RWLOCK rwl)
|
|||
{
|
||||
RtlEnterCriticalSection( &rwl->rtlCS );
|
||||
if( rwl->iNumberActive || rwl->uExclusiveWaiters || rwl->uSharedWaiters )
|
||||
MESSAGE("Deleting active MRSW lock (%p), expect failure\n", rwl );
|
||||
ERR("Deleting active MRSW lock (%p), expect failure\n", rwl );
|
||||
rwl->hOwningThreadId = 0;
|
||||
rwl->uExclusiveWaiters = rwl->uSharedWaiters = 0;
|
||||
rwl->iNumberActive = 0;
|
||||
|
|
Loading…
Reference in New Issue