diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-07-18 11:21:48 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-07-18 11:21:48 +0000 |
commit | 38179b1ca977b1c45a3cda44bf1192118119ac24 (patch) | |
tree | b525e86b3f34720028a49766c36058732252f26c /cppu | |
parent | 3c606ae18406f86638a4e666be0ee34c158328b8 (diff) |
INTEGRATION: CWS unomacli64 (1.11.36); FILE MERGED
2007/06/07 10:54:33 kr 1.11.36.2: fixed: #i77600# warning because of wrong format specifier - now uses C++ style casts
2007/06/07 09:22:29 kr 1.11.36.1: fixed: #i77600# warning because of wrong format specifier
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/source/threadpool/thread.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cppu/source/threadpool/thread.cxx b/cppu/source/threadpool/thread.cxx index 8312f47bdb33..bd073a60ad57 100644 --- a/cppu/source/threadpool/thread.cxx +++ b/cppu/source/threadpool/thread.cxx @@ -4,9 +4,9 @@ * * $RCSfile: thread.cxx,v $ * - * $Revision: 1.11 $ + * $Revision: 1.12 $ * - * last change: $Author: obo $ $Date: 2006-09-17 00:19:42 $ + * last change: $Author: obo $ $Date: 2007-07-18 12:21:48 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -65,7 +65,7 @@ namespace cppu_threadpool { #if OSL_DEBUG_LEVEL > 1 if( m_lst.size() ) { - fprintf( stderr, "%d Threads left\n" , m_lst.size() ); + fprintf( stderr, "%lu Threads left\n" , static_cast<unsigned long>(m_lst.size()) ); } #endif } |