From: Mark Dickinson Date: Wed, 28 Oct 2009 07:47:32 +0000 (+0000) Subject: Fix format specifier for MSVC X-Git-Tag: v2.7a1~208 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8486931b69ee954a9a662c60a5f22a850a6bbeb;p=python Fix format specifier for MSVC --- diff --git a/Modules/_io/_iomodule.h b/Modules/_io/_iomodule.h index b1a4c48649..2bebc0c870 100644 --- a/Modules/_io/_iomodule.h +++ b/Modules/_io/_iomodule.h @@ -91,7 +91,7 @@ typedef PY_LONG_LONG Py_off_t; # define PyLong_FromOff_t PyLong_FromLongLong # define PY_OFF_T_MAX PY_LLONG_MAX # define PY_OFF_T_MIN PY_LLONG_MIN -# define PY_PRIdOFF "lld" /* format to use in printf with type off_t */ +# define PY_PRIdOFF "I64d" /* format to use in printf with type off_t */ # define PY_OFF_T_COMPAT PY_LONG_LONG /* type compatible with off_t */ #else