From 6eda3f95c39fc22758aa5cf1b7598efee0534df9 Mon Sep 17 00:00:00 2001 From: Kurt Zenker Date: Wed, 19 Jul 2006 15:24:51 +0000 Subject: INTEGRATION: CWS warningfixes02 (1.5.2); FILE MERGED 2006/06/30 11:56:36 sb 1.5.2.1: #i66577# Made the code compile (warning-free) on a unxlngi6.pro GCC 4.1.1 Linux box. --- rdbmaker/inc/codemaker/global.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'rdbmaker/inc') diff --git a/rdbmaker/inc/codemaker/global.hxx b/rdbmaker/inc/codemaker/global.hxx index 19825eedbed5..e875a7b76515 100644 --- a/rdbmaker/inc/codemaker/global.hxx +++ b/rdbmaker/inc/codemaker/global.hxx @@ -4,9 +4,9 @@ * * $RCSfile: global.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: hr $ $Date: 2006-06-20 04:09:00 $ + * last change: $Author: kz $ $Date: 2006-07-19 16:24:51 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -131,7 +131,7 @@ public: // friend functions friend FileStream &operator<<(FileStream& o, sal_uInt32 i) - { fprintf(o.m_pFile, "%d", i); + { fprintf(o.m_pFile, "%lu", sal::static_int_cast< unsigned long >(i)); return o; } friend FileStream &operator<<(FileStream& o, char const * s) -- cgit