commit | 7f8ed815dbf02c34b5d5c1fc66c43717a051b184 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Sun May 17 08:20:45 2009 +0000 |
committer | Georg Brandl <georg@python.org> | Sun May 17 08:20:45 2009 +0000 |
tree | a745b83ffd34a310962d9e2b421318e1edd4e88c | |
parent | 7fcb3bfadd054b3b55e03c0b878ab365b1d1fa41 [diff] |
Fix a warning.
diff --git a/Modules/zipimport.c b/Modules/zipimport.c index 53bc799..770f18f 100644 --- a/Modules/zipimport.c +++ b/Modules/zipimport.c
@@ -1129,7 +1129,7 @@ if (Py_VerboseFlag > 1) PySys_WriteStderr("# trying %s%c%s\n", _PyUnicode_AsString(self->archive), - SEP, path); + (int)SEP, path); toc_entry = PyDict_GetItemString(self->files, path); if (toc_entry != NULL) { time_t mtime = 0;