From 24e53b6d919ccb1c35286701fd39e8eb10a50282 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc-Andr=C3=A9=20Lemburg?= Date: Tue, 24 Sep 2002 09:32:14 +0000 Subject: [PATCH] Add cast to avoid compiler warning. --- Objects/unicodeobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/unicodeobject.c b/Objects/unicodeobject.c index 7f4c3120533..eb8ee61ba92 100644 --- a/Objects/unicodeobject.c +++ b/Objects/unicodeobject.c @@ -6465,7 +6465,7 @@ PyObject *PyUnicode_Format(PyObject *format, "unsupported format character '%c' (0x%x) " "at index %i", (31<=c && c<=126) ? (char)c : '?', - c, + (int)c, (int)(fmt -1 - PyUnicode_AS_UNICODE(uformat))); goto onError; }