diff options
author | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-05-27 13:52:40 +0200 |
---|---|---|
committer | Sebastian Dröge <sebastian.droege@collabora.co.uk> | 2013-05-27 13:52:40 +0200 |
commit | 41d8a9fbd7762ca2cc680736d842ff32cb4d279f (patch) | |
tree | 3576f76cd374c62fb90ecb660d008ec4504e203a /orc-test | |
parent | be0775c2e7e585f82b87bdc258df0b23ebd94398 (diff) |
orc-test: Fix typo in #ifdef
Diffstat (limited to 'orc-test')
-rw-r--r-- | orc-test/orcarray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/orc-test/orcarray.c b/orc-test/orcarray.c index dce48b3..2ee6bbf 100644 --- a/orc-test/orcarray.c +++ b/orc-test/orcarray.c @@ -69,7 +69,7 @@ orc_array_new (int n, int m, int element_size, int misalignment, ar->alloc_data = data; ar->aligned_data = data; #else -#ifdef HAVE_POSIX_MEMALIGNx +#ifdef HAVE_POSIX_MEMALIGN ret = posix_memalign (&data, ALIGNMENT, ar->alloc_len); ar->alloc_data = data; ar->aligned_data = data; |