summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-03-05 12:28:21 -0500
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-03-05 11:32:32 -0600
commitb3bc4e283fc941c6f8c334de31fd34031afa0fef (patch)
tree363f5de4253a3372cf646db3a1d50263fc3ab0a7 /sc
parent5e34a3236258f47374c34e5c7ab92fde9b981bb7 (diff)
Oopsy.
Change-Id: Ie961fca03b99ec14f401462da56dd4110ea5518c Reviewed-on: https://gerrit.libreoffice.org/8467 Tested-by: Markus Mohrhard <markus.mohrhard@googlemail.com> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/inc/stlalgorithm.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/inc/stlalgorithm.hxx b/sc/inc/stlalgorithm.hxx
index f788667ebbed..d2beaa6a8461 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);