From a854583b57b62f1b5106966f395375e192686a68 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 6 Jun 2014 17:17:22 +0200 Subject: input: don't print warning when aboting playback via commands I don't really see a reason for this. --- input/input.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/input/input.c b/input/input.c index 44360e05ec..adc4e048ff 100644 --- a/input/input.c +++ b/input/input.c @@ -1627,12 +1627,7 @@ void mp_input_wakeup_nolock(struct input_ctx *ictx) static bool test_abort(struct input_ctx *ictx) { - if (async_quit_request || queue_has_abort_cmds(&ictx->cmd_queue)) { - MP_WARN(ictx, "Received command to move to another file. " - "Aborting current processing.\n"); - return true; - } - return false; + return async_quit_request || queue_has_abort_cmds(&ictx->cmd_queue); } void mp_input_set_main_thread(struct input_ctx *ictx) -- cgit v1.2.3