[Python-checkins] bpo-41819: Fix compiler warning in init_dump_ascii_wstr() (GH-22332)

Miss Islington (bot) webhook-mailer at python.org
Mon Sep 21 04:58:56 EDT 2020


https://github.com/python/cpython/commit/7aa534c9567201d896408bc7d5a718b529868540
commit: 7aa534c9567201d896408bc7d5a718b529868540
branch: 3.9
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-09-21T01:58:27-07:00
summary:

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`
(cherry picked from commit c322948892438a387d752ec18d1eb512699a4d67)

Co-authored-by: Samuel Marks <807580+SamuelMarks at users.noreply.github.com>

files:
M Python/initconfig.c

diff --git a/Python/initconfig.c b/Python/initconfig.c
index 9887079a86fd1..e882a1fba5396 100644
--- a/Python/initconfig.c
+++ b/Python/initconfig.c
@@ -2676,7 +2676,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);



More information about the Python-checkins mailing list