summaryrefslogtreecommitdiff
path: root/cppu/source/threadpool
diff options
context:
space:
mode:
authorOliver Bolte <obo@openoffice.org>2007-07-18 11:22:02 +0000
committerOliver Bolte <obo@openoffice.org>2007-07-18 11:22:02 +0000
commit5a8c9b573f0324f36e77f9c65dca68e3fbedb493 (patch)
treeb84e331025b00316b35e7f92e7f47c541925b2d0 /cppu/source/threadpool
parent38179b1ca977b1c45a3cda44bf1192118119ac24 (diff)
INTEGRATION: CWS unomacli64 (1.16.36); FILE MERGED
2007/06/07 10:54:33 kr 1.16.36.2: fixed: #i77600# warning because of wrong format specifier - now uses C++ style casts 2007/06/07 09:22:29 kr 1.16.36.1: fixed: #i77600# warning because of wrong format specifier
Diffstat (limited to 'cppu/source/threadpool')
-rw-r--r--cppu/source/threadpool/threadpool.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/cppu/source/threadpool/threadpool.cxx b/cppu/source/threadpool/threadpool.cxx
index ef8c5bd0f44f..851a485736e6 100644
--- a/cppu/source/threadpool/threadpool.cxx
+++ b/cppu/source/threadpool/threadpool.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: threadpool.cxx,v $
*
- * $Revision: 1.16 $
+ * $Revision: 1.17 $
*
- * last change: $Author: obo $ $Date: 2006-09-17 00:20:10 $
+ * last change: $Author: obo $ $Date: 2007-07-18 12:22:02 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -72,7 +72,7 @@ namespace cppu_threadpool
#if OSL_DEBUG_LEVEL > 1
if( !m_lst.empty() )
{
- printf( "DisposedCallerList : %d left\n" , m_lst.size( ));
+ printf( "DisposedCallerList : %lu left\n" , static_cast<unsigned long>(m_lst.size( )));
}
#endif
}
@@ -120,7 +120,7 @@ namespace cppu_threadpool
#if OSL_DEBUG_LEVEL > 1
if( m_mapQueue.size() )
{
- printf( "ThreadIdHashMap : %d left\n" , m_mapQueue.size() );
+ printf( "ThreadIdHashMap : %lu left\n" , static_cast<unsigned long>(m_mapQueue.size()) );
}
#endif
}