diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-12-30 22:42:57 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-12-30 22:42:57 (GMT) |
commit | 1ea93f2b1d0a165b5f9306c7cb351c595712199e (patch) | |
tree | a8e17a44b49a6d05b0b5ea1746bb61169ecc3352 /Modules/zipimport.c | |
parent | 8bb80dbe10c846462851a3f448f0e9988e0deac7 (diff) | |
download | cpython-1ea93f2b1d0a165b5f9306c7cb351c595712199e.zip cpython-1ea93f2b1d0a165b5f9306c7cb351c595712199e.tar.gz cpython-1ea93f2b1d0a165b5f9306c7cb351c595712199e.tar.bz2 |
Wouldn't compile on Windows; fixed.
Diffstat (limited to 'Modules/zipimport.c')
-rw-r--r-- | Modules/zipimport.c | 2 |
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; |