diff options
| author | Lennart Poettering <lennart@poettering.net> | 2009-01-15 20:48:29 +0100 | 
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2009-01-15 20:48:29 +0100 | 
| commit | edf88a515035e0544abc328c7b93053bfe475622 (patch) | |
| tree | 45db3e78703f23c12e7634ebc9f3a2fa34095c6b | |
| parent | 47a2b17d01cc0dceb964df07d17e406726d50d45 (diff) | |
don't show autoload flag anymore since it is obsolete
| -rw-r--r-- | src/utils/pactl.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/src/utils/pactl.c b/src/utils/pactl.c index 65342bb2..2fc17330 100644 --- a/src/utils/pactl.c +++ b/src/utils/pactl.c @@ -281,13 +281,11 @@ static void get_module_info_callback(pa_context *c, const pa_module_info *i, int      printf(_("*** Module #%u ***\n"             "Name: %s\n"             "Argument: %s\n" -           "Usage counter: %s\n" -           "Auto unload: %s\n"), +           "Usage counter: %s\n"),             i->index,             i->name,             i->argument ? i->argument : "", -           i->n_used != PA_INVALID_INDEX ? t : _("n/a"), -           pa_yes_no(i->auto_unload)); +           i->n_used != PA_INVALID_INDEX ? t : _("n/a"));  }  static void get_client_info_callback(pa_context *c, const pa_client_info *i, int is_last, void *userdata) {  | 
