From 0aecc08e5fd15960639a75c43265539e70d0189e Mon Sep 17 00:00:00 2001 From: wm4 <nfxjfg@googlemail.com> Date: Tue, 3 Oct 2017 17:43:13 +0200 Subject: [PATCH] avcodec/decode: add missing \n to log message --- libavcodec/decode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavcodec/decode.c b/libavcodec/decode.c index 9fdc7bb5654..570799f6d7a 100644 --- a/libavcodec/decode.c +++ b/libavcodec/decode.c @@ -1115,7 +1115,7 @@ static int setup_hwaccel(AVCodecContext *avctx, if (!hwa) { av_log(avctx, AV_LOG_ERROR, - "Could not find an AVHWAccel for the pixel format: %s", + "Could not find an AVHWAccel for the pixel format: %s\n", name); return AVERROR(ENOENT); } -- GitLab