[Expat-CVS] expat/lib xmlparse.c,1.61,1.62
Fred L. Drake
fdrake@users.sourceforge.net
Wed Aug 21 20:55:02 2002
Update of /cvsroot/expat/expat/lib
In directory usw-pr-cvs1:/tmp/cvs-serv29030
Modified Files:
xmlparse.c
Log Message:
Suppress a warning from GCC that moveToFreeBindingList() had no
prototype, by making it static.
Index: xmlparse.c
===================================================================
RCS file: /cvsroot/expat/expat/lib/xmlparse.c,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -d -r1.61 -r1.62
--- xmlparse.c 21 Aug 2002 20:00:09 -0000 1.61
+++ xmlparse.c 22 Aug 2002 03:54:17 -0000 1.62
@@ -775,7 +775,8 @@
}
/* moves list of bindings to freeBindingList */
-void moveToFreeBindingList(XML_Parser parser, BINDING *bindings)
+static void
+moveToFreeBindingList(XML_Parser parser, BINDING *bindings)
{
while (bindings) {
BINDING *b = bindings;