From ffb0304593547dd31424d7df62de771b7c1d7719 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Mon, 7 Mar 2011 22:32:05 +0000 Subject: [PATCH] id3v2: fix typo in error message Signed-off-by: Mans Rullgard (cherry picked from commit fb61a7c5343a23d845ab73dd28caf6ec98cd6101) --- libavformat/id3v2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/id3v2.c b/libavformat/id3v2.c index 37443a4174..4c61131c78 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"))