diff options
author | Travis Oliphant <oliphant@enthought.com> | 2006-03-13 21:40:06 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2006-03-13 21:40:06 +0000 |
commit | aa04352b39a26f24a7293ca13f13c2348793484a (patch) | |
tree | 496f0d801b0c0fbd7b5cd65dca267bf9fbbf6922 /numpy/core/src/arraymethods.c | |
parent | 37e0c9b5b852dffee11e41d1a9ee7a11be1f662e (diff) | |
download | numpy-aa04352b39a26f24a7293ca13f13c2348793484a.tar.gz |
Remove numpy distutils from autoload and fix 64-bit bug.
Diffstat (limited to 'numpy/core/src/arraymethods.c')
-rw-r--r-- | numpy/core/src/arraymethods.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/src/arraymethods.c b/numpy/core/src/arraymethods.c index c48904f25..9d5dc2e75 100644 --- a/numpy/core/src/arraymethods.c +++ b/numpy/core/src/arraymethods.c @@ -971,7 +971,7 @@ array_setstate(PyArrayObject *self, PyObject *args) { PyObject *shape; PyArray_Descr *typecode; - long fortran; + int fortran; PyObject *rawdata; char *datastr; int len; |