From 2381d803c76105f44717d75f089ec37f51e5cfe4 Mon Sep 17 00:00:00 2001 From: qinxialei Date: Thu, 22 Apr 2021 11:20:15 +0800 Subject: New upstream version 0.16.3 --- src/utils/memory.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/utils/memory.h') diff --git a/src/utils/memory.h b/src/utils/memory.h index 219a83f..a8da53b 100644 --- a/src/utils/memory.h +++ b/src/utils/memory.h @@ -71,7 +71,7 @@ inline void* AlignedAlloc(size_t alignment, size_t size) { // more convenient to use memalign(). Unlike glibc, Android does not consider // memalign() an obsolete function. return memalign(alignment, size); -#else // !defined(__ANDROID__) +#else // !defined(__ANDROID__) void* ptr = nullptr; // posix_memalign requires that the requested alignment be at least // sizeof(void*). In this case, fall back on malloc which should return -- cgit v1.2.3