summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2002-12-30 22:42:57 (GMT)
committerTim Peters <tim.peters@gmail.com>2002-12-30 22:42:57 (GMT)
commit1ea93f2b1d0a165b5f9306c7cb351c595712199e (patch)
treea8e17a44b49a6d05b0b5ea1746bb61169ecc3352 /Modules
parent8bb80dbe10c846462851a3f448f0e9988e0deac7 (diff)
downloadcpython-1ea93f2b1d0a165b5f9306c7cb351c595712199e.zip
cpython-1ea93f2b1d0a165b5f9306c7cb351c595712199e.tar.gz
cpython-1ea93f2b1d0a165b5f9306c7cb351c595712199e.tar.bz2
Wouldn't compile on Windows; fixed.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/zipimport.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/zipimport.c b/Modules/zipimport.c
index 593c6e0..ec5a529 100644
--- a/Modules/zipimport.c
+++ b/Modules/zipimport.c
@@ -391,7 +391,7 @@ zipimporter_get_data(PyObject *obj, PyObject *args)
ZipImporter *self = (ZipImporter *)obj;
char *path;
#ifdef ALTSEP
- char *p, buf[MAXPATHLEN + 1];;
+ char *p, buf[MAXPATHLEN + 1];
#endif
PyObject *toc_entry;
int len;