summaryrefslogtreecommitdiffstats
path: root/Modules/pyexpat.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2001-01-21 10:22:12 (GMT)
committerMartin v. Löwis <martin@v.loewis.de>2001-01-21 10:22:12 (GMT)
commit6512dbd5be12330bc39a37df8e2bf76e3bd0b1e0 (patch)
treeb15a41ce81483491db94ad4836571607c266b1f7 /Modules/pyexpat.c
parent0078f6cc80212844c41f556d8c9185a9b08426f0 (diff)
downloadcpython-6512dbd5be12330bc39a37df8e2bf76e3bd0b1e0.zip
cpython-6512dbd5be12330bc39a37df8e2bf76e3bd0b1e0.tar.gz
cpython-6512dbd5be12330bc39a37df8e2bf76e3bd0b1e0.tar.bz2
Fix typo: MICRO instead of MINOR.
Diffstat (limited to 'Modules/pyexpat.c')
-rw-r--r--Modules/pyexpat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/pyexpat.c b/Modules/pyexpat.c
index 69105bd..ff104f6 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 */