mirror of
https://github.com/python/cpython.git
synced 2025-08-22 17:55:18 +00:00
bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)
This commit is contained in:
parent
10f8ce6688
commit
d53fe5f407
20 changed files with 35 additions and 35 deletions
|
@ -2005,7 +2005,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