Commit 1ea93f2b authored by Tim Peters's avatar Tim Peters

Wouldn't compile on Windows; fixed.

parent 8bb80dbe
...@@ -391,7 +391,7 @@ zipimporter_get_data(PyObject *obj, PyObject *args) ...@@ -391,7 +391,7 @@ zipimporter_get_data(PyObject *obj, PyObject *args)
ZipImporter *self = (ZipImporter *)obj; ZipImporter *self = (ZipImporter *)obj;
char *path; char *path;
#ifdef ALTSEP #ifdef ALTSEP
char *p, buf[MAXPATHLEN + 1];; char *p, buf[MAXPATHLEN + 1];
#endif #endif
PyObject *toc_entry; PyObject *toc_entry;
int len; int len;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment