Revert hrev43458.

This reverts commit 80e6a84bf0.
This commit is contained in:
Michael Lotz
2011-12-10 21:03:13 +01:00
parent a173514ad1
commit 8eff10a8bf
+1 -1
View File
@@ -323,7 +323,7 @@ void *
memalign(size_t alignment, size_t size) memalign(size_t alignment, size_t size)
{ {
// pseudo alignment by just upping the size // pseudo alignment by just upping the size
size = (size + alignment - 1) & ~(alignment - 1); size = (size + alignment - 1) & ~alignment;
return malloc(size); return malloc(size);
} }