summaryrefslogtreecommitdiffstats
path: root/sal
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-11-20 18:51:31 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-11-20 18:51:31 +0000
commite481f924371c2487f8423abfcd8fb952e99eaaf2 (patch)
tree8610cf39b3aacf4115ebc54d89722fe769fb5d3f /sal
parentINTEGRATION: CWS reportdesign01 (1.4.98); FILE MERGED (diff)
downloadcore-e481f924371c2487f8423abfcd8fb952e99eaaf2.tar.gz
core-e481f924371c2487f8423abfcd8fb952e99eaaf2.zip
INTEGRATION: CWS reportdesign01 (1.3.92); FILE MERGED
2007/10/15 09:09:57 oj 1.3.92.2: RESYNC: (1.3-1.4); FILE MERGED 2007/10/04 11:36:19 lla 1.3.92.1: #i67655# cleanups
Diffstat (limited to 'sal')
-rw-r--r--sal/qa/testHelperFunctions/testHelperFunctions.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/qa/testHelperFunctions/testHelperFunctions.cxx b/sal/qa/testHelperFunctions/testHelperFunctions.cxx
index e40a09b2c21a..690541e23af3 100644
--- a/sal/qa/testHelperFunctions/testHelperFunctions.cxx
+++ b/sal/qa/testHelperFunctions/testHelperFunctions.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: testHelperFunctions.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: vg $ $Date: 2007-09-20 15:23:22 $
+ * last change: $Author: ihi $ $Date: 2007-11-20 19:51:31 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -75,14 +75,14 @@ void t_print64(sal_Int64 n)
if (n > 2147483647)
{
sal_Int64 n64 = n >> 32;
- sal_Int32 n32 = n64 & 0xffffffff;
+ sal_uInt32 n32 = n64 & 0xffffffff;
printf("0x%.8x ", n32);
n32 = n & 0xffffffff;
printf("%.8x (64bit)", n32);
}
else
{
- sal_Int32 n32 = n & 0xffffffff;
+ sal_uInt32 n32 = n & 0xffffffff;
printf("0x%.8x (32bit) ", n32);
}
printf("\n");