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
This commit is contained in:
Oliver Bolte 2007-07-18 11:21:48 +00:00
parent 3c606ae184
commit 38179b1ca9

View file

@ -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
}