aboutsummaryrefslogtreecommitdiffstats
path: root/src/zix
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2022-07-15 07:42:23 -0400
committerDavid Robillard <d@drobilla.net>2022-08-17 13:50:43 -0400
commit0579dca6a5fae625efbbfe3b31167d855c8f966d (patch)
treebcf69a28dfb65f941e9540986a693fd4c612eb50 /src/zix
parente1bcda7bd5ed51bf60157605bb087d2312e15e59 (diff)
downloadjalv-0579dca6a5fae625efbbfe3b31167d855c8f966d.tar.gz
jalv-0579dca6a5fae625efbbfe3b31167d855c8f966d.tar.bz2
jalv-0579dca6a5fae625efbbfe3b31167d855c8f966d.zip
Switch to meson build system
Diffstat (limited to 'src/zix')
-rw-r--r--src/zix/ring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zix/ring.c b/src/zix/ring.c
index 78cc7b4..a48153a 100644
--- a/src/zix/ring.c
+++ b/src/zix/ring.c
@@ -6,7 +6,7 @@
#include <stdlib.h>
#include <string.h>
-#ifdef HAVE_MLOCK
+#if HAVE_MLOCK
# include <sys/mman.h>
# define ZIX_MLOCK(ptr, size) mlock((ptr), (size))
#elif defined(_WIN32)