diff options
author | Kurt Zenker <kz@openoffice.org> | 2006-02-28 09:33:55 +0000 |
---|---|---|
committer | Kurt Zenker <kz@openoffice.org> | 2006-02-28 09:33:55 +0000 |
commit | 87b8934e4dfca8b9d51e9fd2336cba1de110fe65 (patch) | |
tree | c9aa8d214b0088153f3769e9c47edc6d496e65c3 /sal/cpprt | |
parent | 6dcc275f9c2403c77376312451b78777e193e9e1 (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/cpprt')
-rw-r--r-- | sal/cpprt/operators_new_delete.cxx | 6 |
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); |