aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/jalv.c')
-rw-r--r--src/jalv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jalv.c b/src/jalv.c
index af045fb..c5dd442 100644
--- a/src/jalv.c
+++ b/src/jalv.c
@@ -1203,8 +1203,8 @@ jalv_open(Jalv* const jalv, int* argc, char*** argv)
&jalv->features.safe_restore_feature, LV2_STATE__threadSafeRestore, NULL);
// Create Plugin <=> UI communication buffers
- jalv->ui_to_plugin = zix_ring_new(jalv->opts.buffer_size);
- jalv->plugin_to_ui = zix_ring_new(jalv->opts.buffer_size);
+ jalv->ui_to_plugin = zix_ring_new(NULL, jalv->opts.buffer_size);
+ jalv->plugin_to_ui = zix_ring_new(NULL, jalv->opts.buffer_size);
zix_ring_mlock(jalv->ui_to_plugin);
zix_ring_mlock(jalv->plugin_to_ui);