Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwm4 <nfxjfg@googlemail.com>2017-10-03 18:43:13 +0300
committerTimo Rothenpieler <timo@rothenpieler.org>2017-11-11 00:48:34 +0300
commit0aecc08e5fd15960639a75c43265539e70d0189e (patch)
treeb120dc548c832bf4e65dc6ea3eb0b29a4906dc89 /libavcodec/decode.c
parentae5046e492cd87233111e994ca4ae3d74a233b51 (diff)
avcodec/decode: add missing \n to log message
Diffstat (limited to 'libavcodec/decode.c')
-rw-r--r--libavcodec/decode.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/decode.c b/libavcodec/decode.c
index 9fdc7bb565..570799f6d7 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);
}