summaryrefslogtreecommitdiff
path: root/sal/cpprt
diff options
context:
space:
mode:
Diffstat (limited to 'sal/cpprt')
-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 e585db5d9628..e624f520c8bc 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);