diff --git a/lib/xmltree/xmlparse.h b/lib/xmltree/xmlparse.h index 50b4966ce..c13018645 100644 --- a/lib/xmltree/xmlparse.h +++ b/lib/xmltree/xmlparse.h @@ -120,8 +120,8 @@ enum XML_Error { #define INIT_BLOCK_SIZE 1024 #define INIT_BUFFER_SIZE 1024 -typedef struct tag { - struct tag *parent; +typedef struct xml_tag { + struct xml_tag *parent; const char *rawName; int rawNameLength; const XML_Char *name;