diff options
author | Mark Dickinson <mdickinson@enthought.com> | 2012-09-20 21:29:28 +0100 |
---|---|---|
committer | Mark Dickinson <mdickinson@enthought.com> | 2012-09-20 21:29:28 +0100 |
commit | c286e58044839bd8d946b12fee454ae861e6cdbc (patch) | |
tree | b86e7f8b64fdd8f269c3a36a2020e920852a3d04 | |
parent | 4e12ad19c984dc8dfdb8c326b0ea44c490408579 (diff) | |
download | cpython-git-c286e58044839bd8d946b12fee454ae861e6cdbc.tar.gz |
Issue 15959: Fix type mismatch for quick{_neg}_int_allocs. Thanks Serhiy Storchaka.
-rw-r--r-- | Objects/longobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/longobject.c b/Objects/longobject.c index f2f63afbf6..dfedfb7bfe 100644 --- a/Objects/longobject.c +++ b/Objects/longobject.c @@ -30,7 +30,7 @@ */ static PyLongObject small_ints[NSMALLNEGINTS + NSMALLPOSINTS]; #ifdef COUNT_ALLOCS -int quick_int_allocs, quick_neg_int_allocs; +Py_ssize_t quick_int_allocs, quick_neg_int_allocs; #endif static PyObject * |