From 11602fd31ac87553e2f2daf1b0cdc7e377da8226 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 13 Sep 2013 21:36:19 +0200 Subject: [PATCH] mplayer: print a message when writing watch_later config for resume Putting this into stable, because it might help debugging certain issues, and also making the user aware what's happening. --- mpvcore/mplayer.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mpvcore/mplayer.c b/mpvcore/mplayer.c index 676ccf9843..d7e55fe1bc 100644 --- a/mpvcore/mplayer.c +++ b/mpvcore/mplayer.c @@ -867,6 +867,8 @@ void mp_write_watch_later_conf(struct MPContext *mpctx) if (!conffile) goto exit; + mp_msg(MSGT_CPLAYER, MSGL_INFO, "Saving state.\n"); + FILE *file = fopen(conffile, "wb"); if (!file) goto exit;