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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84632ee319b0fa194e7d20e3983b99ae28335e70;p=python 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 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;