From e822207ab4f860c062fce78ba75c5d32290f4163 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sat, 23 May 2020 04:15:11 +0200 Subject: command: fix dump-cache parameter parsing Commit 9d32d62b615 broke this when it changed OPT_TIME. I simply forgot to adjust the command definition. The effect was that "no" was not accepted as value. --- player/command.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/player/command.c b/player/command.c index c6219676cf..08c5caf1f7 100644 --- a/player/command.c +++ b/player/command.c @@ -6091,8 +6091,10 @@ const struct mp_cmd_def mp_cmds[] = { { "load-script", cmd_load_script, {{"filename", OPT_STRING(v.s)}} }, - { "dump-cache", cmd_dump_cache, { {"start", OPT_TIME(v.d), .min = MP_NOPTS_VALUE}, - {"end", OPT_TIME(v.d), .min = MP_NOPTS_VALUE}, + { "dump-cache", cmd_dump_cache, { {"start", OPT_TIME(v.d), + .flags = M_OPT_ALLOW_NO}, + {"end", OPT_TIME(v.d), + .flags = M_OPT_ALLOW_NO}, {"filename", OPT_STRING(v.s)} }, .exec_async = true, .can_abort = true, -- cgit v1.2.3