]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - play.c
play: Convert com_next() to lopsub.
[paraslash.git] / play.c
diff --git a/play.c b/play.c
index 996734f4b3138fe71bc3c5c4fd42e8ce4f766849..ce10a56bb9001f6675c18d06ce60323bbfeccf7e 100644 (file)
--- a/play.c
+++ b/play.c
@@ -924,12 +924,11 @@ static int com_prev(struct play_task *pt, int argc, __a_unused char **argv)
        return 0;
 }
 
-static int com_next(struct play_task *pt, int argc, __a_unused char **argv)
+static int com_next(struct play_task *pt,
+               __a_unused struct lls_parse_result *lpr)
 {
        int ret;
 
-       if (argc != 1)
-               return -E_PLAY_SYNTAX;
        ret = next_valid_file(pt);
        if (ret < 0)
                return ret;
@@ -939,6 +938,7 @@ static int com_next(struct play_task *pt, int argc, __a_unused char **argv)
        pt->start_chunk = 0;
        return 0;
 }
+EXPORT_PLAY_CMD_HANDLER(next);
 
 static int com_fg(struct play_task *pt,
                __a_unused struct lls_parse_result *lpr)
@@ -969,7 +969,7 @@ static int com_jmp(struct play_task *pt, int argc, char **argv)
        if (percent < 0 || percent > 100)
                return -ERRNO_TO_PARA_ERROR(EINVAL);
        if (percent == 100)
-               return com_next(pt, 1, (char *[]){"next", NULL});
+               return com_next(pt, NULL);
        if (pt->playing && !pt->fn.btrn)
                return 0;
        pt->start_chunk = percent * pt->num_chunks / 100;