From: Fred L. Drake, Jr. Date: Thu, 29 Aug 2002 15:29:52 +0000 (+0000) Subject: The strings returned as part of the XML_Feature structure should be of type X-Git-Tag: R_1_95_5~45 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a759c51ca1868462545daebb50b4f2d62ad5746a;p=libexpat The strings returned as part of the XML_Feature structure should be of type XML_LChar*, not XML_Char*. --- diff --git a/expat/doc/reference.html b/expat/doc/reference.html index 1cef79bc..afac0916 100644 --- a/expat/doc/reference.html +++ b/expat/doc/reference.html @@ -1716,7 +1716,7 @@ enum XML_FeatureEnum { typedef struct { enum XML_FeatureEnum feature; - XML_Char *name; + XML_LChar *name; } XML_Feature;
diff --git a/expat/lib/expat.h b/expat/lib/expat.h index 5a8054e3..63c08527 100644 --- a/expat/lib/expat.h +++ b/expat/lib/expat.h @@ -881,7 +881,7 @@ enum XML_FeatureEnum { typedef struct { enum XML_FeatureEnum feature; - XML_Char *name; + XML_LChar *name; } XML_Feature; XMLPARSEAPI(const XML_Feature *)