summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-05-17 08:20:45 (GMT)
committerGeorg Brandl <georg@python.org>2009-05-17 08:20:45 (GMT)
commit7f8ed815dbf02c34b5d5c1fc66c43717a051b184 (patch)
treea745b83ffd34a310962d9e2b421318e1edd4e88c /Modules
parent7fcb3bfadd054b3b55e03c0b878ab365b1d1fa41 (diff)
downloadcpython-7f8ed815dbf02c34b5d5c1fc66c43717a051b184.zip
cpython-7f8ed815dbf02c34b5d5c1fc66c43717a051b184.tar.gz
cpython-7f8ed815dbf02c34b5d5c1fc66c43717a051b184.tar.bz2
Fix a warning.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/zipimport.c2
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;