diff options
author | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-03-06 21:38:41 +0100 |
---|---|---|
committer | Carl Eugen Hoyos <cehoyos@ag.or.at> | 2016-03-06 21:38:41 +0100 |
commit | 59793785f4ba46c95248f9d336d422ce58547a15 (patch) | |
tree | 86fc6aed89b94bc1812eb8ea9f5b5d7eb2a0f4cc | |
parent | 719276b8609e595094820cf2d5ac525b43b9b82e (diff) | |
download | ffmpeg-59793785f4ba46c95248f9d336d422ce58547a15.tar.gz |
lavc/cfhd: Remove one more \n from avpriv_report_missing_feature().
-rw-r--r-- | libavcodec/cfhd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/cfhd.c b/libavcodec/cfhd.c index d82e432830..a33cc715b1 100644 --- a/libavcodec/cfhd.c +++ b/libavcodec/cfhd.c @@ -343,7 +343,7 @@ static int cfhd_decode(AVCodecContext *avctx, void *data, int *got_frame, bytestream2_skipu(&gb, data * 4); } else if (tag == 23) { av_log(avctx, AV_LOG_DEBUG, "Skip frame\n"); - avpriv_report_missing_feature(avctx, "Skip frame\n"); + avpriv_report_missing_feature(avctx, "Skip frame"); ret = AVERROR_PATCHWELCOME; break; } else if (tag == 2) { |