diff options
author | Руслан Ижбулатов <lrn1986@gmail.com> | 2010-03-24 19:07:11 +0300 |
---|---|---|
committer | Edward Hervey <bilboed@bilboed.com> | 2010-03-24 19:01:34 +0100 |
commit | 49c5383c7198ddeab84a80f8c96217c826901d83 (patch) | |
tree | 7d51da257f113f3eb7024ae057c5c9c42d149f24 /gst/realmedia | |
parent | 4e87b5c1d09c7574bfb378b4f78dd1316e6b150d (diff) |
Fix pointer type.
Fixes #613815
Diffstat (limited to 'gst/realmedia')
-rw-r--r-- | gst/realmedia/rmutils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/realmedia/rmutils.c b/gst/realmedia/rmutils.c index 9b52bd1d..397068e3 100644 --- a/gst/realmedia/rmutils.c +++ b/gst/realmedia/rmutils.c @@ -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; |