Fix single thread build (#410)

Compilation fails if ENABLE_MIXER_THREADS is set to zero, due to a mismatch of parenthesis.
This commit is contained in:
carlo-bramini 2018-07-01 12:54:07 +02:00 committed by Tom M
parent 16a112956e
commit 4ea94a324f
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}