mirror of
https://github.com/ZDoom/fluidsynth.git
synced 2024-11-10 23:11:41 +00:00
Fix misleading whitespace (clang4 complaint)
This commit is contained in:
parent
7d9f980fc2
commit
6b47241780
1 changed files with 2 additions and 2 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue