Alexandre Julliard : ntdll: Make an error message a proper ERR.

Alexandre Julliard julliard at winehq.org
Tue Dec 13 13:01:24 CST 2011


Module: wine
Branch: master
Commit: 70f4b2d5024cbe923518510c88e9fa1aa689e117
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=70f4b2d5024cbe923518510c88e9fa1aa689e117

Author: Alexandre Julliard <julliard at 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;




More information about the wine-cvs mailing list