summaryrefslogtreecommitdiffstats
path: root/src/plugin.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugin.c')
-rw-r--r--src/plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugin.c b/src/plugin.c
index aa4a7a4..1533ac6 100644
--- a/src/plugin.c
+++ b/src/plugin.c
@@ -437,7 +437,7 @@ SLV2Values
slv2_plugin_get_value_by_qname(SLV2Plugin p,
const char* predicate)
{
- char* pred_uri = slv2_qname_expand(p, predicate);
+ char* pred_uri = (char*)slv2_qname_expand(p, predicate);
if (!pred_uri) {
return NULL;
}
@@ -453,7 +453,7 @@ SLV2Values
slv2_plugin_get_value_by_qname_i18n(SLV2Plugin p,
const char* predicate)
{
- char* pred_uri = slv2_qname_expand(p, predicate);
+ uint8_t* pred_uri = slv2_qname_expand(p, predicate);
if (!pred_uri) {
return NULL;
}