Cast xmlChar* to gchar* when setting the meta string
This commit is contained in:
parent
3e80ed6581
commit
8ad4e3585f
1 changed files with 1 additions and 1 deletions
|
@ -132,7 +132,7 @@ katze_xbel_parse_info (KatzeItem* item,
|
||||||
gchar* ns_value = g_strdup_printf ("%s:%s",
|
gchar* ns_value = g_strdup_printf ("%s:%s",
|
||||||
properties->ns->prefix, properties->name);
|
properties->ns->prefix, properties->name);
|
||||||
katze_item_set_meta_string (item,
|
katze_item_set_meta_string (item,
|
||||||
(gchar*)ns_value, value);
|
(gchar*)ns_value, (gchar*)value);
|
||||||
g_free (ns_value);
|
g_free (ns_value);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue