orc-test: Fix typo in #ifdef
authorSebastian Dröge <sebastian.droege@collabora.co.uk>
Mon, 27 May 2013 11:52:40 +0000 (13:52 +0200)
committerSebastian Dröge <sebastian.droege@collabora.co.uk>
Mon, 27 May 2013 11:52:40 +0000 (13:52 +0200)
orc-test/orcarray.c

index dce48b3..2ee6bbf 100644 (file)
@@ -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;