Fix pointer type.

Fixes #613815
This commit is contained in:
Руслан Ижбулатов 2010-03-24 19:07:11 +03:00 committed by Edward Hervey
parent 4e87b5c1d0
commit 49c5383c71

View file

@ -101,7 +101,7 @@ gst_rm_utils_read_tags (const guint8 * data, guint datalen,
encoding = "ISO-8859-15"; encoding = "ISO-8859-15";
} }
GST_DEBUG ("converting tag from %s to UTF-8", encoding); 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); NULL, NULL, NULL);
g_free (str); g_free (str);
str = tmp; str = tmp;