diff options
author | Max Kellermann <max@duempel.org> | 2009-02-28 15:29:51 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2009-02-28 15:29:51 +0100 |
commit | 5ea8a0df3ff159d1c9879b4a3a4c56ff34f0e43f (patch) | |
tree | fb29f79ec8b2ae0eb25d481e7fb84a47b2c41c0e /src/cmdline.c | |
parent | 1bb0124b77a21ab560c1b0d0a67259b6979648d7 (diff) | |
download | mpd-5ea8a0df3ff159d1c9879b4a3a4c56ff34f0e43f.tar.gz mpd-5ea8a0df3ff159d1c9879b4a3a4c56ff34f0e43f.tar.xz mpd-5ea8a0df3ff159d1c9879b4a3a4c56ff34f0e43f.zip |
decoder_list: print decoder list with suffixes
Print the list of suffixes supported by each decoder, instead of
prining a list of all suffixes of all decoders with duplicates.
Diffstat (limited to '')
-rw-r--r-- | src/cmdline.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/cmdline.c b/src/cmdline.c index d4d96cf52..3941a143b 100644 --- a/src/cmdline.c +++ b/src/cmdline.c @@ -47,13 +47,9 @@ static void version(void) "This is free software; see the source for copying conditions. There is NO\n" "warranty; not even MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n" "\n" - "Supported formats:\n"); + "Supported decoders:\n"); decoder_plugin_init_all(); - decoder_plugin_print_all_suffixes(stdout); - - puts("\n" - "Supported decoders:\n"); decoder_plugin_print_all_decoders(stdout); puts("\n" |