mirror of
https://github.com/python/cpython.git
synced 2026-04-22 03:41:08 +00:00
[3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (GH-12322)
(cherry picked from commit d53fe5f407)
Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
This commit is contained in:
parent
a84f9bc11c
commit
783bed4c8d
18 changed files with 34 additions and 34 deletions
|
|
@ -2003,7 +2003,7 @@ hamt_node_array_dump(PyHamtNode_Array *node,
|
|||
goto error;
|
||||
}
|
||||
|
||||
if (_hamt_dump_format(writer, "%d::\n", i)) {
|
||||
if (_hamt_dump_format(writer, "%zd::\n", i)) {
|
||||
goto error;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue