From: Martin v. Löwis Date: Sun, 5 Mar 2006 05:33:54 +0000 (+0000) Subject: Use %Id for size_t-ish things on Win64. X-Git-Tag: v2.5a0~361 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=99b93c28247d6e150fe352538aa26b1ce19f8f0c;p=thirdparty%2FPython%2Fcpython.git Use %Id for size_t-ish things on Win64. --- diff --git a/Python/pythonrun.c b/Python/pythonrun.c index 3f934d6ba26f..c4e387605c84 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -33,7 +33,7 @@ # define PRINT_TOTAL_REFS() #else /* Py_REF_DEBUG */ # if defined(MS_WIN64) -# define PRINT_TOTAL_REFS() fprintf(stderr, "[%zd refs]\n", _Py_RefTotal); +# define PRINT_TOTAL_REFS() fprintf(stderr, "[%Id refs]\n", _Py_RefTotal); # else /* ! MS_WIN64 */ # define PRINT_TOTAL_REFS() fprintf(stderr, "[%ld refs]\n", _Py_RefTotal); # endif /* MS_WIN64 */