From 6d4396b3b55acb110e6ac238bf346f581f621052 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Andriot?= Date: Sun, 7 Sep 2014 00:45:21 +0200 Subject: Fix FTBFS because invalid data conversion in qmutex --- src/tools/qmutex_unix.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/tools/qmutex_unix.cpp') diff --git a/src/tools/qmutex_unix.cpp b/src/tools/qmutex_unix.cpp index 3fff83366..df7fd7a87 100644 --- a/src/tools/qmutex_unix.cpp +++ b/src/tools/qmutex_unix.cpp @@ -72,6 +72,7 @@ typedef pthread_mutex_t Q_MUTEX_T; #include "qmutex_p.h" #include +#include #include // Private class declarations @@ -270,8 +271,8 @@ void TQRecursiveMutexPrivate::unlock() } else { #ifdef QT_CHECK_RANGE tqWarning("TQMutex::unlock: unlock from different thread than locker"); - tqWarning(" was locked by %d, unlock attempt from %d", - (int)owner, (int)pthread_self()); + tqWarning(" was locked by %d, unlock attempt from %lu", + (int)owner, (uintptr_t)pthread_self()); #endif } -- cgit v1.2.1