aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorscootergrisen <scootergrisen@gmail.com>2019-02-16 00:57:27 +0000
committerGeorg Chini <georg@chini.tk>2019-02-16 11:11:58 +0000
commita4264de3a871674427cc02e4aec6e608330fbc60 (patch)
tree8d9faa56e1faba3cee4d21b16a8b07cc833713e3
parentdee7674c7f8906e2266d7fb75615694e436b703e (diff)
downloadpulseaudio-a4264de3a871674427cc02e4aec6e608330fbc60.tar.gz
channel/s to channel(s)
-rw-r--r--src/utils/pactl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/pactl.c b/src/utils/pactl.c
index f2f67cac..8f103fb8 100644
--- a/src/utils/pactl.c
+++ b/src/utils/pactl.c
@@ -887,8 +887,8 @@ static void fill_volume(pa_cvolume *cv, unsigned supported) {
if (volume.channels == 1) {
pa_cvolume_set(&volume, supported, volume.values[0]);
} else if (volume.channels != supported) {
- pa_log(ngettext("Failed to set volume: You tried to set volumes for %d channel, whereas channel/s supported = %d\n",
- "Failed to set volume: You tried to set volumes for %d channels, whereas channel/s supported = %d\n",
+ pa_log(ngettext("Failed to set volume: You tried to set volumes for %d channel, whereas channel(s) supported = %d\n",
+ "Failed to set volume: You tried to set volumes for %d channels, whereas channel(s) supported = %d\n",
volume.channels),
volume.channels, supported);
quit(1);