From: Samuel Marks <807580+SamuelMarks@users.noreply.github.com> Date: Mon, 21 Sep 2020 08:35:17 +0000 (+1000) Subject: bpo-41819: Fix compiler warning in init_dump_ascii_wstr() (GH-22332) X-Git-Tag: v3.10.0a1~83 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c322948892438a387d752ec18d1eb512699a4d67;p=thirdparty%2FPython%2Fcpython.git bpo-41819: Fix compiler warning in init_dump_ascii_wstr() (GH-22332) Fix the compiler warning: format specifies type `wint_t` (aka `int`) but the argument has type `unsigned int` --- diff --git a/Python/initconfig.c b/Python/initconfig.c index 880e145ec031..6a13dc52ed77 100644 --- a/Python/initconfig.c +++ b/Python/initconfig.c @@ -2674,7 +2674,7 @@ init_dump_ascii_wstr(const wchar_t *str) if (ch == L'\'') { PySys_WriteStderr("\\'"); } else if (0x20 <= ch && ch < 0x7f) { - PySys_WriteStderr("%lc", ch); + PySys_WriteStderr("%c", ch); } else if (ch <= 0xff) { PySys_WriteStderr("\\x%02x", ch);