diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-04 20:00:59 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-04 20:00:59 +0000 |
commit | 12625b1d67a914eb4ffe513d9ea6170f2e1fa4ed (patch) | |
tree | ace10a744aeac970c5269ce14201d402275212e3 | |
parent | 00498c28b3afab617fe56d4c435296669849b624 (diff) | |
download | cpython-12625b1d67a914eb4ffe513d9ea6170f2e1fa4ed.tar.gz |
Oops, forgot to include this in the last checkin.
Actually define Py_RefTotal as a Py_ssize_t.
-rw-r--r-- | Objects/object.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/object.c b/Objects/object.c index 7b905dcd8b..a69a0ad51d 100644 --- a/Objects/object.c +++ b/Objects/object.c @@ -4,7 +4,7 @@ #include "Python.h" #ifdef Py_REF_DEBUG -long _Py_RefTotal; +Py_ssize_t _Py_RefTotal; #endif int Py_DivisionWarningFlag; |