summaryrefslogtreecommitdiff
path: root/libavformat/id3v2.c
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2011-03-07 22:32:05 +0000
committerMans Rullgard <mans@mansr.com>2011-03-09 10:57:44 +0000
commitfb61a7c5343a23d845ab73dd28caf6ec98cd6101 (patch)
tree79eaa5576dd4d0078ea198d62ec13de4808390c8 /libavformat/id3v2.c
parent31ff9bd7b8cd8236f70e2bf5368a480fa49f7d27 (diff)
id3v2: fix typo in error message
Signed-off-by: Mans Rullgard <mans@mansr.com>
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 7635735195..76c7124525 100644
--- a/libavformat/id3v2.c
+++ b/libavformat/id3v2.c
@@ -115,7 +115,7 @@ static void read_ttag(AVFormatContext *s, AVIOContext *pb, int taglen, const cha
dst[len] = 0;
break;
default:
- av_log(s, AV_LOG_WARNING, "Unknown encoding in tag %s\n.", key);
+ av_log(s, AV_LOG_WARNING, "Unknown encoding in tag %s.\n", key);
}
if (!(strcmp(key, "TCON") && strcmp(key, "TCO"))