summaryrefslogtreecommitdiff
path: root/libavformat/id3v2.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/id3v2.c
parent9d87cf51d8f47cbce29abbb3117d7c28eca5723a (diff)
lavf: add missing new line to some error messages 2
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/id3v2.c')
-rw-r--r--libavformat/id3v2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c
index f9b5b0354f..9c20287778 100644
--- a/libavformat/id3v2.c
+++ b/libavformat/id3v2.c
@@ -714,7 +714,7 @@ static void ff_id3v2_parse(AVFormatContext *s, int len, uint8_t version, uint8_t
}
else if (!tag[0]) {
if (tag[1])
- av_log(s, AV_LOG_WARNING, "invalid frame id, assuming padding");
+ av_log(s, AV_LOG_WARNING, "invalid frame id, assuming padding\n");
avio_skip(s->pb, tlen);
break;
}