From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Tue, 18 Dec 2018 23:51:04 +0000 (-0800) Subject: bpo-10320: Replace nonstandard sprintf() length modifier in ctypes' PyCArg_repr(... X-Git-Tag: v2.7.16rc1~30 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=53e2248a94cd89e65326c5cfd400f74a88552d8c;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 63f3c21784d5..ff2a7da4246f 100644 --- a/Modules/_ctypes/callproc.c +++ b/Modules/_ctypes/callproc.c @@ -488,7 +488,7 @@ PyCArg_repr(PyCArgObject *self) #ifdef MS_WIN32 "", #else - "", + "", #endif self->tag, self->value.q); break;