1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-15 08:21:24 +03:00

fix windows compilation

This commit is contained in:
Eugene Kosov
2019-12-18 23:35:33 +08:00
parent 3d3d8f1012
commit a5a433e256

View File

@@ -90,8 +90,8 @@ static void *aligned_malloc(size_t size, size_t align)
void *result;
if (posix_memalign(&result, align, size))
result= NULL;
#endif
return result;
#endif
}
inline void aligned_free(void *ptr) {