From: Martin v. Löwis Date: Sun, 21 Jan 2001 10:22:12 +0000 (+0000) Subject: Fix typo: MICRO instead of MINOR. X-Git-Tag: v2.1a1~71 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6512dbd5be12330bc39a37df8e2bf76e3bd0b1e0;p=thirdparty%2FPython%2Fcpython.git Fix typo: MICRO instead of MINOR. --- diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index 69105bdf457f..ff104f67f26e 100644 --- a/Modules/pyexpat.c +++ b/Modules/pyexpat.c @@ -8,7 +8,7 @@ #endif #ifdef XML_MAJOR_VERSION -#define EXPAT_VERSION (0x10000*XML_MAJOR_VERSION+0x100*XML_MINOR_VERSION+XML_MINOR_VERSION) +#define EXPAT_VERSION (0x10000*XML_MAJOR_VERSION+0x100*XML_MINOR_VERSION+XML_MICRO_VERSION) #else #ifndef EXPAT_VERSION /* Assume Expat 1.1 unless told otherwise */