Fix a warning.
authorGeorg Brandl <georg@python.org>
Sun, 17 May 2009 08:20:45 +0000 (08:20 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 17 May 2009 08:20:45 +0000 (08:20 +0000)
Modules/zipimport.c

index 53bc799a7f4adc631b8a0195ea96a5e2b4aca75e..770f18f69d9499d9682953bb968d4784e1e0eba7 100644 (file)
@@ -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;