Commit d37ec0c5 authored by Kir Kolyshkin's avatar Kir Kolyshkin Committed by Konstantin Khlebnikov

Fix a typo in a define

s/ALLIGN/ALIGN/
Signed-off-by: default avatarKir Kolyshkin <kir@openvz.org>
Signed-off-by: default avatarKonstantin Khlebnikov <koct9i@gmail.com>
parent d84d6cad
...@@ -39,7 +39,7 @@ ...@@ -39,7 +39,7 @@
#ifdef __linux__ #ifdef __linux__
# define HAVE_POSIX_FADVICE # define HAVE_POSIX_FADVICE
# define HAVE_POSIX_MEMALLIGN # define HAVE_POSIX_MEMALIGN
#endif #endif
#ifdef __FreeBSD__ #ifdef __FreeBSD__
...@@ -66,7 +66,7 @@ int posix_fadvise(int fd, off_t offset, off_t len, int advice) ...@@ -66,7 +66,7 @@ int posix_fadvise(int fd, off_t offset, off_t len, int advice)
} }
#endif #endif
#ifndef HAVE_POSIX_MEMALLIGN #ifndef HAVE_POSIX_MEMALIGN
/* don't free it */ /* don't free it */
int posix_memalign(void **memptr, size_t alignment, size_t size) int posix_memalign(void **memptr, size_t alignment, size_t size)
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment