diff options
author | cookedm <cookedm@localhost> | 2006-09-28 11:20:52 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2006-09-28 11:20:52 +0000 |
commit | 0698cb7e52b7dab046b28322d37f28050257e9c0 (patch) | |
tree | c05bdcc72bda91e44fc7a3b1e25804ef0263c296 /numpy/numarray | |
parent | f9409c5e14dc38047365b30da7d1ee2f2084fc72 (diff) | |
download | numpy-0698cb7e52b7dab046b28322d37f28050257e9c0.tar.gz |
Python 2.5 fixes: replace int with Py_ssize_t where appropiate
Diffstat (limited to 'numpy/numarray')
-rw-r--r-- | numpy/numarray/_capi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/numarray/_capi.c b/numpy/numarray/_capi.c index 80194ca29..ff3df9416 100644 --- a/numpy/numarray/_capi.c +++ b/numpy/numarray/_capi.c @@ -123,7 +123,7 @@ getReadBufferDataPtr(PyObject *buffobj, void **buff) static int getBufferSize(PyObject *buffobj) { - int segcount, size=0; + Py_ssize_t segcount, size=0; PyObject *buff2; if ((buff2 = getBuffer(buffobj))) { |