summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKevin Mitchell <kevmitch@gmail.com>2016-04-18 01:58:18 -0700
committerKevin Mitchell <kevmitch@gmail.com>2016-04-18 01:58:18 -0700
commit2f5c7af9140867755437ed3aca2f47c50d131c7b (patch)
tree9847890ae09be3593ea59fe07a822333d6c62ed1
parent611594e7e814163343896400b52a99661559d3c0 (diff)
downloadmpv-2f5c7af9140867755437ed3aca2f47c50d131c7b.tar.bz2
mpv-2f5c7af9140867755437ed3aca2f47c50d131c7b.tar.xz
dxva2: fix missing newline in error message
-rw-r--r--video/decode/dxva2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/video/decode/dxva2.c b/video/decode/dxva2.c
index 852c32f038..2c98c3abcc 100644
--- a/video/decode/dxva2.c
+++ b/video/decode/dxva2.c
@@ -133,7 +133,7 @@ static void dump_decoder_info(struct lavc_ctx *s,
HRESULT hr = IDirectXVideoDecoderService_GetDecoderRenderTargets(
p->decoder_service, guid, &n_formats, &formats);
if (FAILED(hr)) {
- MP_ERR(p, "Failed to get render targets for decoder %s:%s",
+ MP_ERR(p, "Failed to get render targets for decoder %s:%s\n",
description, mp_HRESULT_to_str(hr));
}