mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
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 c322948892
)
Co-authored-by: Samuel Marks <807580+SamuelMarks@users.noreply.github.com>
This commit is contained in:
parent
0e4d526de4
commit
7aa534c956
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue