From: Tim Peters Date: Mon, 30 Dec 2002 22:42:57 +0000 (+0000) Subject: Wouldn't compile on Windows; fixed. X-Git-Tag: v2.3c1~2781 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1ea93f2b1d0a165b5f9306c7cb351c595712199e;p=thirdparty%2FPython%2Fcpython.git Wouldn't compile on Windows; fixed. --- diff --git a/Modules/zipimport.c b/Modules/zipimport.c index 593c6e093d75..ec5a529e3e22 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;