From 4ea94a324f41d5312e98c3327e71c27799f1a6b2 Mon Sep 17 00:00:00 2001 From: carlo-bramini <30959007+carlo-bramini@users.noreply.github.com> Date: Sun, 1 Jul 2018 12:54:07 +0200 Subject: [PATCH] Fix single thread build (#410) Compilation fails if ENABLE_MIXER_THREADS is set to zero, due to a mismatch of parenthesis. --- src/rvoice/fluid_rvoice_mixer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rvoice/fluid_rvoice_mixer.c b/src/rvoice/fluid_rvoice_mixer.c index 9f2b57a3..d2d970a7 100644 --- a/src/rvoice/fluid_rvoice_mixer.c +++ b/src/rvoice/fluid_rvoice_mixer.c @@ -1290,8 +1290,8 @@ fluid_rvoice_mixer_render(fluid_rvoice_mixer_t *mixer, int blockcount) fluid_render_loop_multithread(mixer, blockcount); } else - { #endif + { fluid_render_loop_singlethread(mixer, blockcount); }