summaryrefslogtreecommitdiff
path: root/rdbmaker
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-07-19 15:24:51 +0000
committerKurt Zenker <kz@openoffice.org>2006-07-19 15:24:51 +0000
commit07a4cdf62f273840eda91b9e34483076adb0fdf8 (patch)
tree0963729f0db5cfe78f12c94fb28347ebe25d9f40 /rdbmaker
parentfb362f1b3da69ee8954293cbc4f964a9e7d0c0e0 (diff)
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.
Diffstat (limited to 'rdbmaker')
-rw-r--r--rdbmaker/inc/codemaker/global.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/rdbmaker/inc/codemaker/global.hxx b/rdbmaker/inc/codemaker/global.hxx
index b2320a598..cbf40882c 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)