diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-06 23:31:27 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-06 23:31:27 +0000 |
commit | 74b1b1e9120ce2c831a3327d06571306ac656dd0 (patch) | |
tree | 3af830a341b1ffb8e1a7e66c11597225d7bccf70 /Python/pythonrun.c | |
parent | ca8850a381f1764a6e8aa6b9cf59ca522b3454f7 (diff) | |
download | cpython-74b1b1e9120ce2c831a3327d06571306ac656dd0.tar.gz |
Fix warnings on x86 (32-bit).
Diffstat (limited to 'Python/pythonrun.c')
-rw-r--r-- | Python/pythonrun.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Python/pythonrun.c b/Python/pythonrun.c index c4e387605c..38f9c11000 100644 --- a/Python/pythonrun.c +++ b/Python/pythonrun.c @@ -35,7 +35,8 @@ # if defined(MS_WIN64) # 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); +# define PRINT_TOTAL_REFS() fprintf(stderr, "[%ld refs]\n", \ + Py_SAFE_DOWNCAST(_Py_RefTotal, Py_ssize_t, long)); # endif /* MS_WIN64 */ #endif |