commit | d53fe5f407ff4b529628b01a1bcbf21a6aad5c3a | [log] [tgz] |
---|---|---|
author | Serhiy Storchaka <storchaka@gmail.com> | Wed Mar 13 22:59:55 2019 +0200 |
committer | GitHub <noreply@github.com> | Wed Mar 13 22:59:55 2019 +0200 |
tree | db8a8657e379e60b26fe2bfdbad4da612fbb46b9 | |
parent | 10f8ce66884cd7fee2372b8dae08ca8132091574 [diff] [blame] |
bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)
diff --git a/Modules/_io/winconsoleio.c b/Modules/_io/winconsoleio.c index dd0997a..70a723e 100644 --- a/Modules/_io/winconsoleio.c +++ b/Modules/_io/winconsoleio.c
@@ -725,7 +725,7 @@ if (u8n) { PyErr_Format(PyExc_SystemError, - "Buffer had room for %d bytes but %d bytes required", + "Buffer had room for %zd bytes but %u bytes required", len, u8n); return -1; }