Commit d5b9be03 authored by Max Kellermann's avatar Max Kellermann

cmdline: change --version formatting

parent d2d9b45a
...@@ -83,29 +83,29 @@ static void version(void) ...@@ -83,29 +83,29 @@ static void version(void)
"This is free software; see the source for copying conditions. There is NO\n" "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" "warranty; not even MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n"
"\n" "\n"
"Supported decoders:\n"); "* Decoders plugins:\n");
print_all_decoders(stdout); print_all_decoders(stdout);
puts("\n" puts("\n"
"Supported outputs:\n"); "Output plugins:\n");
audio_output_plugin_print_all_types(stdout); audio_output_plugin_print_all_types(stdout);
#ifdef ENABLE_ENCODER #ifdef ENABLE_ENCODER
puts("\n" puts("\n"
"Supported encoders:\n"); "Encoder plugins:\n");
encoder_plugin_print_all_types(stdout); encoder_plugin_print_all_types(stdout);
#endif #endif
#ifdef ENABLE_ARCHIVE #ifdef ENABLE_ARCHIVE
puts("\n" puts("\n"
"Supported archives:\n"); "Archive plugins:\n");
archive_plugin_print_all_suffixes(stdout); archive_plugin_print_all_suffixes(stdout);
#endif #endif
puts("\n" puts("\n"
"Supported protocols:\n"); "Protocols:\n");
print_supported_uri_schemes_to_fp(stdout); print_supported_uri_schemes_to_fp(stdout);
exit(EXIT_SUCCESS); exit(EXIT_SUCCESS);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment