src/corelib/thread/qmutex.cpp
changeset 30 5dc02b23752f
parent 18 2f34d5167611
--- a/src/corelib/thread/qmutex.cpp	Wed Jun 23 19:07:03 2010 +0300
+++ b/src/corelib/thread/qmutex.cpp	Tue Jul 06 15:10:48 2010 +0300
@@ -41,6 +41,7 @@
 
 #include "qplatformdefs.h"
 #include "qmutex.h"
+#include <qdebug.h>
 
 #ifndef QT_NO_THREAD
 #include "qatomic.h"
@@ -159,8 +160,7 @@
         if (!isLocked) {
 #ifndef QT_NO_DEBUG
             if (d->owner == self)
-                qWarning("QMutex::lock: Deadlock detected in thread %ld",
-                         long(d->owner));
+                qWarning() << "QMutex::lock: Deadlock detected in thread" << d->owner;
 #endif
 
             // didn't get the lock, wait for it
@@ -197,8 +197,7 @@
                 if (!isLocked) {
 #ifndef QT_NO_DEBUG
                     if (d->owner == self)
-                        qWarning("QMutex::lock: Deadlock detected in thread %ld",
-                                 long(d->owner));
+                        qWarning() << "QMutex::lock: Deadlock detected in thread" << d->owner;
 #endif
 
                     // didn't get the lock, wait for it