diff options
author | Georg Brandl <georg@python.org> | 2009-05-17 08:20:45 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2009-05-17 08:20:45 (GMT) |
commit | 7f8ed815dbf02c34b5d5c1fc66c43717a051b184 (patch) | |
tree | a745b83ffd34a310962d9e2b421318e1edd4e88c /Modules/zipimport.c | |
parent | 7fcb3bfadd054b3b55e03c0b878ab365b1d1fa41 (diff) | |
download | cpython-7f8ed815dbf02c34b5d5c1fc66c43717a051b184.zip cpython-7f8ed815dbf02c34b5d5c1fc66c43717a051b184.tar.gz cpython-7f8ed815dbf02c34b5d5c1fc66c43717a051b184.tar.bz2 |
Fix a warning.
Diffstat (limited to 'Modules/zipimport.c')
-rw-r--r-- | Modules/zipimport.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ get_module_code(ZipImporter *self, char *fullname, 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; |