Fix "misleading-indentation" warning

This commit is contained in:
Mark Hämmerling 2017-07-24 22:36:48 +02:00
parent 16737e8fa3
commit 7d9f980fc2

View file

@ -1617,10 +1617,11 @@ fluid_voice_get_overflow_prio(fluid_voice_t* voice,
if (voice->has_noteoff) { if (voice->has_noteoff) {
// FIXME: Should take into account where on the envelope we are...? // FIXME: Should take into account where on the envelope we are...?
} }
if (a < 0.1) if (a < 0.1) {
a = 0.1; // Avoid div by zero a = 0.1; // Avoid div by zero
this_voice_prio += score->volume / a;
} }
this_voice_prio += score->volume / a;
}
return this_voice_prio; return this_voice_prio;
} }