summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2013-11-16 20:36:03 +0100
committerwm4 <wm4@nowhere>2013-12-01 19:24:12 +0100
commitdd25c08713fca3907e75e1a192a77b0796f97638 (patch)
treeeb933837f3673bb0e74f4b92260305786acf8fa7
parent327edcec3f001a24f0ceb3cc1177e9ed86186008 (diff)
downloadmpv-dd25c08713fca3907e75e1a192a77b0796f97638.tar.bz2
mpv-dd25c08713fca3907e75e1a192a77b0796f97638.tar.xz
encode_lavc: add missing newline in error message
-rw-r--r--mpvcore/encode_lavc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/mpvcore/encode_lavc.c b/mpvcore/encode_lavc.c
index ce8d9a8e59..c0c4c54738 100644
--- a/mpvcore/encode_lavc.c
+++ b/mpvcore/encode_lavc.c
@@ -680,7 +680,7 @@ int encode_lavc_open_codec(struct encode_lavc_context *ctx, AVStream *stream)
if (ret < 0)
encode_lavc_fail(ctx,
- "unable to open encoder (see above for the cause)");
+ "unable to open encoder (see above for the cause)\n");
return ret;
}