From 1ea93f2b1d0a165b5f9306c7cb351c595712199e Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Mon, 30 Dec 2002 22:42:57 +0000 Subject: [PATCH] Wouldn't compile on Windows; fixed. --- Modules/zipimport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/zipimport.c b/Modules/zipimport.c index 593c6e093d7..ec5a529e3e2 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;