summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-01-30 01:04:25 +0100
committerwm4 <wm4@nowhere>2013-01-30 01:04:25 +0100
commitcfc3f10bda14e5ea42365776dc005e8f9cb09d64 (patch)
tree9f41273090aea67eb1dd138fcbb959a68dcd1afc /core
parent0421e17c2becffda3b748e27bd35e49c6fa017fb (diff)
downloadmpv-cfc3f10bda14e5ea42365776dc005e8f9cb09d64.tar.bz2
mpv-cfc3f10bda14e5ea42365776dc005e8f9cb09d64.tar.xz
mplayer: add newline for --print-msg
Diffstat (limited to 'core')
-rw-r--r--core/mplayer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/mplayer.c b/core/mplayer.c
index 8aba5517fd..5c1a2d4750 100644
--- a/core/mplayer.c
+++ b/core/mplayer.c
@@ -4066,7 +4066,7 @@ goto_enable_cache: ;
if (opts->playing_msg) {
char *msg = mp_property_expand_string(mpctx, opts->playing_msg);
- mp_msg(MSGT_CPLAYER, MSGL_INFO, "%s", msg);
+ mp_msg(MSGT_CPLAYER, MSGL_INFO, "%s\n", msg);
talloc_free(msg);
}