[Python-checkins] CVS: python/dist/src/Modules pyexpat.c,2.23,2.24

Fred L. Drake python-dev@python.org
Sun, 24 Sep 2000 15:08:03 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv27246

Modified Files:
	pyexpat.c 
Log Message:

xmlparse_ExternalEntityParserCreate():  Add required cast to return to
        avoid compiler warnings.


Index: pyexpat.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/pyexpat.c,v
retrieving revision 2.23
retrieving revision 2.24
diff -C2 -r2.23 -r2.24
*** pyexpat.c	2000/09/24 20:50:52	2.23
--- pyexpat.c	2000/09/24 22:07:59	2.24
***************
*** 595,599 ****
      }
        
!     return new_parser;    
  }
  
--- 595,599 ----
      }
        
!     return (PyObject *)new_parser;    
  }