[Python-checkins] r72706 - python/branches/py3k/Modules/zipimport.c

georg.brandl python-checkins at python.org
Sun May 17 10:20:45 CEST 2009


Author: georg.brandl
Date: Sun May 17 10:20:45 2009
New Revision: 72706

Log:
Fix a warning.

Modified:
   python/branches/py3k/Modules/zipimport.c

Modified: python/branches/py3k/Modules/zipimport.c
==============================================================================
--- python/branches/py3k/Modules/zipimport.c	(original)
+++ python/branches/py3k/Modules/zipimport.c	Sun May 17 10:20:45 2009
@@ -1129,7 +1129,7 @@
 		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;


More information about the Python-checkins mailing list