Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 99b93c2

Browse files
committed
Use %Id for size_t-ish things on Win64.
1 parent 5bab0f8 commit 99b93c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/pythonrun.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
# define PRINT_TOTAL_REFS()
3434
#else /* Py_REF_DEBUG */
3535
# if defined(MS_WIN64)
36-
# define PRINT_TOTAL_REFS() fprintf(stderr, "[%zd refs]\n", _Py_RefTotal);
36+
# define PRINT_TOTAL_REFS() fprintf(stderr, "[%Id refs]\n", _Py_RefTotal);
3737
# else /* ! MS_WIN64 */
3838
# define PRINT_TOTAL_REFS() fprintf(stderr, "[%ld refs]\n", _Py_RefTotal);
3939
# endif /* MS_WIN64 */

0 commit comments

Comments
 (0)