Fix up some double spaces

This commit is contained in:
Maarten Bosmans 2011-03-12 19:45:02 +01:00 committed by Colin Guthrie
parent efcddf68c7
commit 684b89c639
38 changed files with 75 additions and 76 deletions

View file

@ -375,8 +375,7 @@ char *pa_sw_volume_snprint_dB(char *s, size_t l, pa_volume_t v) {
}
f = pa_sw_volume_to_dB(v);
pa_snprintf(s, l, "%0.2f dB",
isinf(f) < 0 || f <= PA_DECIBEL_MININFTY ? -INFINITY : f);
pa_snprintf(s, l, "%0.2f dB", isinf(f) < 0 || f <= PA_DECIBEL_MININFTY ? -INFINITY : f);
return s;
}