aboutsummaryrefslogtreecommitdiffstats
path: root/libavformat/mov.c
diff options
context:
space:
mode:
authorPiotr Bandurski <ami_stuff@o2.pl>2012-09-01 16:56:11 +0200
committerMichael Niedermayer <michaelni@gmx.at>2012-09-01 17:35:21 +0200
commit5081310b58d2530fd17605240613d8689b702a35 (patch)
tree70800f5a4347b34955e6630f4ebb534baab780bb /libavformat/mov.c
parent9d87cf51d8f47cbce29abbb3117d7c28eca5723a (diff)
downloadffmpeg-5081310b58d2530fd17605240613d8689b702a35.tar.gz
lavf: add missing new line to some error messages 2
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mov.c')
-rw-r--r--libavformat/mov.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mov.c b/libavformat/mov.c
index 1840170cd5..4108b870f6 100644
--- a/libavformat/mov.c
+++ b/libavformat/mov.c
@@ -2492,7 +2492,7 @@ static int mov_read_cmov(MOVContext *c, AVIOContext *pb, MOVAtom atom)
if (avio_rl32(pb) != MKTAG('d','c','o','m'))
return AVERROR_INVALIDDATA;
if (avio_rl32(pb) != MKTAG('z','l','i','b')) {
- av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !");
+ av_log(c->fc, AV_LOG_ERROR, "unknown compression for cmov atom !\n");
return AVERROR_INVALIDDATA;
}
avio_rb32(pb); /* cmvd atom */