Fix pointer type.
authorРуслан Ижбулатов <lrn1986@gmail.com>
Wed, 24 Mar 2010 16:07:11 +0000 (19:07 +0300)
committerEdward Hervey <bilboed@bilboed.com>
Wed, 24 Mar 2010 18:01:34 +0000 (19:01 +0100)
Fixes #613815

gst/realmedia/rmutils.c

index 9b52bd1..397068e 100644 (file)
@@ -101,7 +101,7 @@ gst_rm_utils_read_tags (const guint8 * data, guint datalen,
           encoding = "ISO-8859-15";
       }
       GST_DEBUG ("converting tag from %s to UTF-8", encoding);
-      tmp = g_convert_with_fallback (str, -1, "UTF-8", encoding, "*",
+      tmp = g_convert_with_fallback (str, -1, "UTF-8", encoding, (gchar *) "*",
           NULL, NULL, NULL);
       g_free (str);
       str = tmp;