From: Neal Norwitz Date: Sat, 4 Mar 2006 20:00:59 +0000 (+0000) Subject: Oops, forgot to include this in the last checkin. X-Git-Tag: v2.5a0~367 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=84632ee319b0fa194e7d20e3983b99ae28335e70;p=thirdparty%2FPython%2Fcpython.git Oops, forgot to include this in the last checkin. Actually define Py_RefTotal as a Py_ssize_t. --- diff --git a/Objects/object.c b/Objects/object.c index 7b905dcd8bfc..a69a0ad51d6e 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;