summaryrefslogtreecommitdiff
path: root/sal
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2006-02-28 09:33:55 +0000
committerKurt Zenker <kz@openoffice.org>2006-02-28 09:33:55 +0000
commitdb00f0d2a7f7983c8d4c470af20947ff9ff26a0a (patch)
tree84153fdb59662576e7707823cd8cec51bd39b8f0 /sal
parentbd0d870c4749d1fdb1272a72745060695328d720 (diff)
INTEGRATION: CWS sixtyfour01 (1.4.60); FILE MERGED
2006/01/14 12:57:49 pjanik 1.4.60.1: #i57893#: 64bit fixes for module sal. Patch from Jan Holesovsky (JCA).
Diffstat (limited to 'sal')
-rw-r--r--sal/cpprt/operators_new_delete.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/cpprt/operators_new_delete.cxx b/sal/cpprt/operators_new_delete.cxx
index e585db5d9..e624f520c 100644
--- a/sal/cpprt/operators_new_delete.cxx
+++ b/sal/cpprt/operators_new_delete.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: operators_new_delete.cxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: rt $ $Date: 2005-09-08 14:25:22 $
+ * last change: $Author: kz $ $Date: 2006-02-28 10:33:55 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -154,7 +154,7 @@ static void* allocate (
n = rTraits.size (n);
for (;;)
{
- void * p = rtl_allocateMemory (sal_uInt32(n));
+ void * p = rtl_allocateMemory (sal_Size(n));
if (p != 0)
return rTraits.init (p);