mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-10-29 05:40:23 -04:00
cli: Fix plural in caption of source-outputs list
$ pacmd list-source-outputs >>> 4 source outputs(s) available. outputs(s) makes no sense Signed-off-by: Peter Meerwald <p.meerwald@bct-electronic.com>
This commit is contained in:
parent
0e4c16e120
commit
9c11749258
1 changed files with 1 additions and 1 deletions
|
|
@ -486,7 +486,7 @@ char *pa_source_output_list_to_string(pa_core *c) {
|
|||
|
||||
s = pa_strbuf_new();
|
||||
|
||||
pa_strbuf_printf(s, "%u source outputs(s) available.\n", pa_idxset_size(c->source_outputs));
|
||||
pa_strbuf_printf(s, "%u source output(s) available.\n", pa_idxset_size(c->source_outputs));
|
||||
|
||||
PA_IDXSET_FOREACH(o, c->source_outputs, idx) {
|
||||
char ss[PA_SAMPLE_SPEC_SNPRINT_MAX], cvdb[PA_SW_CVOLUME_SNPRINT_DB_MAX], cv[PA_CVOLUME_SNPRINT_MAX], cm[PA_CHANNEL_MAP_SNPRINT_MAX], *t, clt[28];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue