X-Git-Url: http://git.tuebingen.mpg.de/?a=blobdiff_plain;f=play.c;h=e6a58fce566ee7ec7553d31d91f8386b5cef7094;hb=5dbc9ac5ce13e1d2872058f3440de253e4416dfe;hp=7c1ee93259ce6bd800daed3600ce7aae3400ffd9;hpb=b59e0eeefe6b51a26c1165f587bf3776369460a5;p=paraslash.git diff --git a/play.c b/play.c index 7c1ee932..e6a58fce 100644 --- a/play.c +++ b/play.c @@ -139,16 +139,12 @@ static void check_afh_receiver_or_die(void) __noreturn static void print_help_and_die(void) { - int d = conf.detailed_help_given; - const char **p = d? play_args_info_detailed_help - : play_args_info_help; - - printf_or_die("%s\n\n", version_single_line("play")); - printf_or_die("%s\n\n", play_args_info_usage); - if (d) - printf_or_die("%s\n", play_args_info_description); - for (; *p; p++) - printf_or_die("%s\n", *p); + struct ggo_help help = DEFINE_GGO_HELP(play); + unsigned flags = conf.detailed_help_given? + GPH_STANDARD_FLAGS_DETAILED : GPH_STANDARD_FLAGS; + + ggo_print_help(&help, flags); + printf("supported audio formats: %s\n", AUDIO_FORMAT_HANDLERS); exit(0); }