[Libreoffice-commits] core.git: Branch 'libreoffice-4-2' - sc/inc
Kohei Yoshida
kohei.yoshida at collabora.com
Wed Mar 5 09:32:53 PST 2014
sc/inc/stlalgorithm.hxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit b3bc4e283fc941c6f8c334de31fd34031afa0fef
Author: Kohei Yoshida <kohei.yoshida at collabora.com>
Date: Wed Mar 5 12:28:21 2014 -0500
Oopsy.
Change-Id: Ie961fca03b99ec14f401462da56dd4110ea5518c
Reviewed-on: https://gerrit.libreoffice.org/8467
Tested-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>
diff --git a/sc/inc/stlalgorithm.hxx b/sc/inc/stlalgorithm.hxx
index f788667..d2beaa6 100644
--- a/sc/inc/stlalgorithm.hxx
+++ b/sc/inc/stlalgorithm.hxx
@@ -82,7 +82,7 @@ public:
#ifdef WNT
return _aligned_malloc(size, _Alignment);
#elif defined __ANDROID__
- return memalign(align, size);
+ return memalign(_Alignment, size);
#else
void* ptr;
int err = posix_memalign(&ptr, _Alignment, size);
More information about the Libreoffice-commits
mailing list