From 6b4724178083fe8c3413650bbee66e7ed0f8e1c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mark=20H=C3=A4mmerling?= Date: Mon, 24 Jul 2017 22:51:35 +0200 Subject: [PATCH] Fix misleading whitespace (clang4 complaint) --- fluidsynth/src/synth/fluid_voice.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fluidsynth/src/synth/fluid_voice.c b/fluidsynth/src/synth/fluid_voice.c index c13e708a..f0a07a79 100644 --- a/fluidsynth/src/synth/fluid_voice.c +++ b/fluidsynth/src/synth/fluid_voice.c @@ -1538,10 +1538,10 @@ fluid_voice_optimize_sample(fluid_sample_t* s) } /* Determine the peak level */ - if (peak_max >- peak_min){ + if (peak_max > -peak_min){ peak = peak_max; } else { - peak =- peak_min; + peak = -peak_min; }; if (peak == 0){ /* Avoid division by zero */