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
commit6eda3f95c39fc22758aa5cf1b7598efee0534df9 (patch)
tree6adabcb9c4e9e49b3579274ab455250f196ce31a /rdbmaker
parent65e94df5caaa510012def923cdea67f61c1f4efe (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 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)