From 6512dbd5be12330bc39a37df8e2bf76e3bd0b1e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20v=2E=20L=C3=B6wis?= Date: Sun, 21 Jan 2001 10:22:12 +0000 Subject: [PATCH] Fix typo: MICRO instead of MINOR. --- Modules/pyexpat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c index 69105bdf457..ff104f67f26 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 */