[Expat-checkins] expat/lib xmltok_ns.c,1.6,1.7

Karl Waclawek kwaclaw at users.sourceforge.net
Fri Nov 26 15:58:26 CET 2004


Update of /cvsroot/expat/expat/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv2309

Modified Files:
	xmltok_ns.c 
Log Message:
Fix for bug #1065047. Improved const correctness.

Index: xmltok_ns.c
===================================================================
RCS file: /cvsroot/expat/expat/lib/xmltok_ns.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- xmltok_ns.c	20 Sep 2002 03:42:43 -0000	1.6
+++ xmltok_ns.c	26 Nov 2004 14:58:24 -0000	1.7
@@ -19,7 +19,7 @@
 #endif
 }
 
-static const ENCODING *NS(encodings)[] = {
+static const ENCODING * const NS(encodings)[] = {
   &ns(latin1_encoding).enc,
   &ns(ascii_encoding).enc,
   &ns(utf8_encoding).enc,



More information about the Expat-checkins mailing list