diff options
author | wm4 <nfxjfg@googlemail.com> | 2017-10-03 17:43:13 +0200 |
---|---|---|
committer | Timo Rothenpieler <timo@rothenpieler.org> | 2017-11-10 22:48:34 +0100 |
commit | 0aecc08e5fd15960639a75c43265539e70d0189e (patch) | |
tree | b120dc548c832bf4e65dc6ea3eb0b29a4906dc89 /libavcodec | |
parent | ae5046e492cd87233111e994ca4ae3d74a233b51 (diff) | |
download | ffmpeg-0aecc08e5fd15960639a75c43265539e70d0189e.tar.gz |
avcodec/decode: add missing \n to log message
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/decode.c | 2 |
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); } |