Alexandre Julliard : ntdll: Make an error message a proper ERR.
Module: wine Branch: master Commit: 70f4b2d5024cbe923518510c88e9fa1aa689e117 URL: http://source.winehq.org/git/wine.git/?a=commit;h=70f4b2d5024cbe923518510c88... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Mon Dec 12 21:25:13 2011 +0100 ntdll: Make an error message a proper ERR. --- dlls/ntdll/rtl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/ntdll/rtl.c b/dlls/ntdll/rtl.c index c430e2d..1970251 100644 --- a/dlls/ntdll/rtl.c +++ b/dlls/ntdll/rtl.c @@ -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;
participants (1)
-
Alexandre Julliard