diff options
author | Max Kellermann <max@duempel.org> | 2012-06-12 19:59:25 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2012-06-12 21:15:46 +0200 |
commit | d5b9be03938a5081d65adf71b15de0899f7ce103 (patch) | |
tree | d0f98c736be6e26d15609eeecdb99f468842c35f /src | |
parent | d2d9b45a8189b7771e1b7dfbe7d5a550fcf400b8 (diff) | |
download | mpd-d5b9be03938a5081d65adf71b15de0899f7ce103.tar.gz mpd-d5b9be03938a5081d65adf71b15de0899f7ce103.tar.xz mpd-d5b9be03938a5081d65adf71b15de0899f7ce103.zip |
cmdline: change --version formatting
Diffstat (limited to '')
-rw-r--r-- | src/cmdline.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/cmdline.c b/src/cmdline.c index a7e1d42fa..b2ed8d0db 100644 --- a/src/cmdline.c +++ b/src/cmdline.c @@ -83,29 +83,29 @@ 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 decoders:\n"); + "* Decoders plugins:\n"); print_all_decoders(stdout); puts("\n" - "Supported outputs:\n"); + "Output plugins:\n"); audio_output_plugin_print_all_types(stdout); #ifdef ENABLE_ENCODER puts("\n" - "Supported encoders:\n"); + "Encoder plugins:\n"); encoder_plugin_print_all_types(stdout); #endif #ifdef ENABLE_ARCHIVE puts("\n" - "Supported archives:\n"); + "Archive plugins:\n"); archive_plugin_print_all_suffixes(stdout); #endif puts("\n" - "Supported protocols:\n"); + "Protocols:\n"); print_supported_uri_schemes_to_fp(stdout); exit(EXIT_SUCCESS); |