From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 3 Dec 2018 09:11:30 +0000 (-0800) Subject: bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_repr(... X-Git-Tag: v3.7.2rc1~66 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a9f435e5d856fb62516b70a78217e40b90bec233;p=thirdparty%2FPython%2Fcpython.git bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_repr(). (GH-10853) Use "ll" instead of the nonstandard "q". (cherry picked from commit 062cbb67726f26794b1b461853e40696b4a0b220) Co-authored-by: Zackery Spytz --- diff --git a/Modules/_ctypes/callproc.c b/Modules/_ctypes/callproc.c index d485c58e8c01..ad40ca1c5247 100644 --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -484,7 +484,7 @@ PyCArg_repr(PyCArgObject *self) #ifdef MS_WIN32 "", #else - "", + "", #endif self->tag, self->value.q); break;