diff options
author | Lennart Poettering <lennart@poettering.net> | 2009-03-03 00:32:10 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2009-03-03 00:32:10 +0100 |
commit | 297515a39eebfbd9e846c9d45bebe3890a39fb02 (patch) | |
tree | 433d5af52dd0fac141b168fc713cab2816a38150 /src/utils/pactl.c | |
parent | f8a085f5cfb9388a813773fbfa9598699bd6131c (diff) |
pass profile priority value to clients
Diffstat (limited to 'src/utils/pactl.c')
-rw-r--r-- | src/utils/pactl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/pactl.c b/src/utils/pactl.c index 6524bf90..269dbfa8 100644 --- a/src/utils/pactl.c +++ b/src/utils/pactl.c @@ -427,7 +427,7 @@ static void get_card_info_callback(pa_context *c, const pa_card_info *i, int is_ printf(_("\tProfiles:\n")); for (p = i->profiles; p->name; p++) - printf("\t\t%s: %s\n", p->name, p->description); + printf("\t\t%s: %s (sinks: %u, sources: %u, priority. %u)\n", p->name, p->description, p->n_sinks, p->n_sources, p->priority); } if (i->active_profile) |