summaryrefslogtreecommitdiff
path: root/Python/pythonrun.c
diff options
context:
space:
mode:
authorMartin v. Löwis <martin@v.loewis.de>2006-03-05 05:33:54 +0000
committerMartin v. Löwis <martin@v.loewis.de>2006-03-05 05:33:54 +0000
commita22a0738dbf2cfb07fa864596863538374d1c928 (patch)
treeeee8dc9440f1bce6c7d6fdbec4e4513c6203f871 /Python/pythonrun.c
parent33f9abd2be74e68db90e3c4bc872ffa5b465158e (diff)
downloadcpython-a22a0738dbf2cfb07fa864596863538374d1c928.tar.gz
Use %Id for size_t-ish things on Win64.
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r--Python/pythonrun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c
index 3f934d6ba2..c4e387605c 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 */