From: Christian Dywan Date: Thu, 9 Jul 2009 17:43:57 +0000 (+0100) Subject: Cast xmlChar* to gchar* when setting the meta string X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8ad4e3585f7c936e2a0bf8ef3cdbcc50da2e5581;p=midori Cast xmlChar* to gchar* when setting the meta string --- diff --git a/midori/midori-array.c b/midori/midori-array.c index 7f0073d3..92e282aa 100644 --- a/midori/midori-array.c +++ b/midori/midori-array.c @@ -132,7 +132,7 @@ katze_xbel_parse_info (KatzeItem* item, gchar* ns_value = g_strdup_printf ("%s:%s", properties->ns->prefix, properties->name); katze_item_set_meta_string (item, - (gchar*)ns_value, value); + (gchar*)ns_value, (gchar*)value); g_free (ns_value); } else