From: Tim Peters <tim.peters@gmail.com>
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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1ea93f2b1d0a165b5f9306c7cb351c595712199e;p=python

Wouldn't compile on Windows; fixed.
---

diff --git a/Modules/zipimport.c b/Modules/zipimport.c
index 593c6e093d..ec5a529e3e 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;