summaryrefslogtreecommitdiff
path: root/src/utils
diff options
context:
space:
mode:
authorJason Nader <8526-ammgws@users.noreply.gitlab.freedesktop.org>2021-03-13 23:49:44 +0000
committerPulseAudio Marge Bot <pulseaudio-maintainers@lists.freedesktop.org>2021-05-17 15:35:07 +0000
commit9a4280988b7507eb05cee00348bbb534161edec8 (patch)
treee861f1e01a4dbd8cbc5628f08b71a3c47e01e904 /src/utils
parent05d8185552b906f37c121b9e368102be536c786a (diff)
Apply 3 suggestion(s) to 1 file(s)
Part-of: <https://gitlab.freedesktop.org/pulseaudio/pulseaudio/-/merge_requests/430>
Diffstat (limited to 'src/utils')
-rw-r--r--src/utils/pactl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/utils/pactl.c b/src/utils/pactl.c
index f4295948f..66b8f5e19 100644
--- a/src/utils/pactl.c
+++ b/src/utils/pactl.c
@@ -1075,7 +1075,7 @@ static void get_sink_mute_callback(pa_context *c, const pa_sink_info *i, int is_
pa_assert(i);
printf(("Mute: %s\n"),
- pa_yes_no_localised(&i->mute));
+ pa_yes_no_localised(i->mute));
complete_action();
}
@@ -1134,7 +1134,7 @@ static void get_source_mute_callback(pa_context *c, const pa_source_info *i, int
pa_assert(i);
printf(("Mute: %s\n"),
- pa_yes_no_localised(&i->mute));
+ pa_yes_no_localised(i->mute));
complete_action();
}
@@ -1849,7 +1849,7 @@ static void help(const char *argv0) {
printf("%s %s %s %s\n", argv0, _("[options]"), "move-(sink-input|source-output)", _("#N SINK|SOURCE"));
printf("%s %s %s %s\n", argv0, _("[options]"), "suspend-(sink|source)", _("NAME|#N 1|0"));
printf("%s %s %s %s\n", argv0, _("[options]"), "set-card-profile ", _("CARD PROFILE"));
- printf("%s %s %s %s\n", argv0, _("[options]"), "get-default-(sink|source)");
+ printf("%s %s %s\n", argv0, _("[options]"), "get-default-(sink|source)");
printf("%s %s %s %s\n", argv0, _("[options]"), "set-default-(sink|source)", _("NAME"));
printf("%s %s %s %s\n", argv0, _("[options]"), "set-(sink|source)-port", _("NAME|#N PORT"));
printf("%s %s %s %s\n", argv0, _("[options]"), "get-(sink|source)-volume", _("NAME|#N"));