summaryrefslogtreecommitdiff
path: root/include/libHX
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2023-07-15 09:47:42 +0200
committerJörg Frings-Fürst <debian@jff-webhosting.net>2023-07-15 09:47:42 +0200
commit33c957d43fe4c779d0601ff3c440c785190e3a80 (patch)
tree87a5f5c9f173123465a6d7ad42a493b070f71348 /include/libHX
parent1842e4ff88f93490966398ae9b763f6dba069799 (diff)
parenteac2a2cc668f491c7d265c5fe6c50f51a60c6256 (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'include/libHX')
-rw-r--r--include/libHX/libxml_helper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/libHX/libxml_helper.h b/include/libHX/libxml_helper.h
index 08a0a07..5a02bf0 100644
--- a/include/libHX/libxml_helper.h
+++ b/include/libHX/libxml_helper.h
@@ -118,7 +118,7 @@ static __inline__ const char *xml_getprop(const xmlNode *node, const char *attr)
static __inline__ char *xml_getnsprop(const xmlNode *node, const char *nsprefix,
const char *attr)
{
- return xml_getnsprop(const_cast<const xmlNode *>(node), nsprefix, attr);
+ return xml_getnsprop(const_cast<xmlNode *>(node), nsprefix, attr);
}
#endif