From a381bda8c42e6fcad47a3f0c1b1fe6a8640e0fb5 Mon Sep 17 00:00:00 2001 From: "Fred L. Drake, Jr." Date: Wed, 25 Jul 2001 17:22:48 +0000 Subject: [PATCH] Removed unusual use of "const" to avoid errors from a Sun compiler. --- expat/lib/expat.h.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expat/lib/expat.h.in b/expat/lib/expat.h.in index 4ea64b2b..f5249057 100644 --- a/expat/lib/expat.h.in +++ b/expat/lib/expat.h.in @@ -65,7 +65,7 @@ typedef struct XML_cp XML_Content; struct XML_cp { enum XML_Content_Type type; enum XML_Content_Quant quant; - const XML_Char * name; + XML_Char * name; unsigned int numchildren; XML_Content * children; }; -- 2.40.0