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

Martin v. Löwis loewis@users.sourceforge.net
Sun, 21 Jan 2001 02:22:14 -0800


Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv16760

Modified Files:
	pyexpat.c 
Log Message:
Fix typo: MICRO instead of MINOR.


Index: pyexpat.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/pyexpat.c,v
retrieving revision 2.32
retrieving revision 2.33
diff -C2 -r2.32 -r2.33
*** pyexpat.c	2001/01/21 10:18:10	2.32
--- pyexpat.c	2001/01/21 10:22:12	2.33
***************
*** 9,13 ****
  
  #ifdef XML_MAJOR_VERSION
! #define EXPAT_VERSION (0x10000*XML_MAJOR_VERSION+0x100*XML_MINOR_VERSION+XML_MINOR_VERSION)
  #else
  #ifndef EXPAT_VERSION
--- 9,13 ----
  
  #ifdef XML_MAJOR_VERSION
! #define EXPAT_VERSION (0x10000*XML_MAJOR_VERSION+0x100*XML_MINOR_VERSION+XML_MICRO_VERSION)
  #else
  #ifndef EXPAT_VERSION