diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-08-24 15:33:10 +0200 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2014-08-24 15:33:10 +0200 |
commit | cc0acdbd684144776f8f000c0733eb4884cb0880 (patch) | |
tree | ac1de7e06e79e983fe6c93710f70e4f641bc8dc9 /libavcodec | |
parent | f155e01ab06661cbe56b7ca197785124c1f6471f (diff) | |
download | ffmpeg-cc0acdbd684144776f8f000c0733eb4884cb0880.tar.gz |
lavc/h264_slice: Add a missing newline to an error message.
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/h264_slice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/h264_slice.c b/libavcodec/h264_slice.c index c5a9784dbe..20231aa5de 100644 --- a/libavcodec/h264_slice.c +++ b/libavcodec/h264_slice.c @@ -537,7 +537,7 @@ int ff_h264_update_thread_context(AVCodecContext *dst, h->pps = h1->pps; if ((err = h264_slice_header_init(h, 1)) < 0) { - av_log(h->avctx, AV_LOG_ERROR, "h264_slice_header_init() failed"); + av_log(h->avctx, AV_LOG_ERROR, "h264_slice_header_init() failed\n"); return err; } context_reinitialized = 1; |