From d0d21d7253bc3714e852dc5c493a7bcb62564634 Mon Sep 17 00:00:00 2001 From: "Fred L. Drake, Jr." Date: Wed, 27 Nov 2002 03:31:23 +0000 Subject: [PATCH] The feature name pointers should be marked const. This reportedly avoids some warnings on HP-UX using the aCC compiler. Closes SF bug #644461. --- expat/lib/expat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expat/lib/expat.h b/expat/lib/expat.h index ad1da6fd..e8403337 100644 --- a/expat/lib/expat.h +++ b/expat/lib/expat.h @@ -886,7 +886,7 @@ enum XML_FeatureEnum { typedef struct { enum XML_FeatureEnum feature; - XML_LChar *name; + const XML_LChar *name; long int value; } XML_Feature; -- 2.40.0