Fix misleading whitespace (clang4 complaint)

This commit is contained in:
Mark Hämmerling 2017-07-24 22:51:35 +02:00
parent 7d9f980fc2
commit 6b47241780
1 changed files with 2 additions and 2 deletions

View File

@ -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 */