Browse Source

id3v2: fix typo in error message

Signed-off-by: Mans Rullgard <mans@mansr.com>
(cherry picked from commit fb61a7c534)
tags/n0.8
Anton Khirnov Michael Niedermayer 15 years ago
parent
commit
ffb0304593
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      libavformat/id3v2.c

+ 1
- 1
libavformat/id3v2.c View File

@@ -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"))


Loading…
Cancel
Save