From 7f8ed815dbf02c34b5d5c1fc66c43717a051b184 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 17 May 2009 08:20:45 +0000 Subject: [PATCH] Fix a warning. --- Modules/zipimport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0