summaryrefslogtreecommitdiffstats
path: root/gst/id3demux/id3v2frames.c
diff options
context:
space:
mode:
authorAlessandro Decina <alessandro.d@gmail.com>2009-09-22 15:03:20 +0200
committerAlessandro Decina <alessandro.d@gmail.com>2009-09-22 15:04:36 +0200
commit195883b30a5d63c0362570280792131789694d81 (patch)
treec65809320127becce3f840247724ce55070aa1ee /gst/id3demux/id3v2frames.c
parent600516be9044a012b490e5ccef5ac868482dffe5 (diff)
Fix compile warnings with gcc 4.0.1.
Diffstat (limited to 'gst/id3demux/id3v2frames.c')
-rw-r--r--gst/id3demux/id3v2frames.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/id3demux/id3v2frames.c b/gst/id3demux/id3v2frames.c
index fd9391c6..076abc70 100644
--- a/gst/id3demux/id3v2frames.c
+++ b/gst/id3demux/id3v2frames.c
@@ -978,7 +978,7 @@ string_utf8_dup (const gchar * start, const guint size)
if ((utf8 =
g_convert (start, size, "UTF-8", *c, &bytes_read, NULL, NULL))) {
if (bytes_read == size) {
- GST_DEBUG ("Using charset %s to interperate id3 tags\n", c);
+ GST_DEBUG ("Using charset %s to interperate id3 tags\n", *c);
g_strfreev (csets);
goto beach;
}