summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-05-29 18:46:20 +0200
committerDiego 'Flameeyes' Pettenò <flameeyes@gmail.com>2007-05-29 18:46:20 +0200
commit2861970659c962900b7ba9093cc5df9640116842 (patch)
tree6799d3ba2cfb74561301c710e511998cd871fa45
parenta24f42fed5ffe89e6af38b6139ed93e46ea15411 (diff)
downloadxine-lib-2861970659c962900b7ba9093cc5df9640116842.tar.gz
xine-lib-2861970659c962900b7ba9093cc5df9640116842.tar.bz2
Fix typo reporting ID3v2.4 tags as ID3v2.3.
-rw-r--r--src/demuxers/id3.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/demuxers/id3.c b/src/demuxers/id3.c
index e5d767b1e..e9ed43d4d 100644
--- a/src/demuxers/id3.c
+++ b/src/demuxers/id3.c
@@ -898,7 +898,7 @@ int id3v2_parse_tag(input_plugin_t *input,
break;
case 4:
- xprintf(stream->xine, XINE_VERBOSITY_LOG, "ID3V2.3 tag\n");
+ xprintf(stream->xine, XINE_VERBOSITY_LOG, "ID3V2.4 tag\n");
result = id3v24_parse_tag(input, stream, mp3_frame_header);
break;