Merge branch 't/versioning_improvements'
[paraslash.git] / play.c
diff --git a/play.c b/play.c
index 35b25119c71e10972737159439c271bf43ac90e4..6eed58ab53779dd22afb9442d002b60c71165525 100644 (file)
--- a/play.c
+++ b/play.c
@@ -144,6 +144,7 @@ __noreturn static void print_help_and_die(void)
                GPH_STANDARD_FLAGS_DETAILED : GPH_STANDARD_FLAGS;
 
        ggo_print_help(&help, flags);
+       printf("supported audio formats: %s\n", AUDIO_FORMAT_HANDLERS);
        exit(0);
 }
 
@@ -973,15 +974,7 @@ out:
 
 static int play_i9e_line_handler(char *line)
 {
-       struct play_task *pt = &play_task;
-       int ret;
-
-       if (line == NULL || !*line)
-               return 0;
-       ret = run_command(line, pt);
-       if (ret < 0)
-               return ret;
-       return 0;
+       return run_command(line, &play_task);
 }
 
 static int play_i9e_key_handler(int key)