From: Georg Brandl Date: Sun, 17 May 2009 08:20:45 +0000 (+0000) Subject: Fix a warning. X-Git-Tag: v3.1rc1~128 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7f8ed815dbf02c34b5d5c1fc66c43717a051b184;p=python Fix a warning. --- diff --git a/Modules/zipimport.c b/Modules/zipimport.c index 53bc799a7f..770f18f69d 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;