#5929: fix signedness warning.

This commit is contained in:
Georg Brandl 2009-05-05 09:19:43 +00:00
parent 5815220a68
commit ba68a99656
1 changed files with 1 additions and 1 deletions

View File

@ -741,7 +741,7 @@ PyUnicode_FromFormatV(const char *format, va_list vargs)
case 's': case 's':
{ {
/* UTF-8 */ /* UTF-8 */
unsigned char *s = va_arg(count, unsigned char*); const char *s = va_arg(count, const char*);
PyObject *str = PyUnicode_DecodeUTF8(s, strlen(s), "replace"); PyObject *str = PyUnicode_DecodeUTF8(s, strlen(s), "replace");
if (!str) if (!str)
goto fail; goto fail;