From a35afd0190f6a6925aa134ac43d2653aaf018ff8 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Fri, 3 Apr 2009 14:50:02 +0200 Subject: Fixed wrong xmlAttrNode type to xmlAttr --- src/dmixml.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/dmixml.h b/src/dmixml.h index d7d2716..7d8c4ad 100644 --- a/src/dmixml.h +++ b/src/dmixml.h @@ -24,8 +24,9 @@ #define _XMLHELPER_H #include +#include -xmlAttrNode *dmixml_AddAttribute(xmlNode *node, const char *atrname, const char *fmt, ...); +xmlAttr *dmixml_AddAttribute(xmlNode *node, const char *atrname, const char *fmt, ...); xmlNode *dmixml_AddTextChild(xmlNode *node, const char *tagname, const char *fmt, ...); xmlNode *dmixml_AddTextContent(xmlNode *node, const char *fmt, ...); -- cgit