summaryrefslogtreecommitdiff
path: root/scipy/base/src/arrayobject.c
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-09-20 08:19:08 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-09-20 08:19:08 +0000
commit0746db19c3cc198c95b632bd1285978050f355d6 (patch)
tree7bbc6d05df76ab4fa2959a1cb94e3f4c54a3e74d /scipy/base/src/arrayobject.c
parentb560ed0a06160b012ea6023be0fc219717f761c4 (diff)
downloadnumpy-0746db19c3cc198c95b632bd1285978050f355d6.tar.gz
problematic MIN removed.
Diffstat (limited to 'scipy/base/src/arrayobject.c')
-rw-r--r--scipy/base/src/arrayobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/src/arrayobject.c b/scipy/base/src/arrayobject.c
index 368c04f62..08c0cb7bf 100644
--- a/scipy/base/src/arrayobject.c
+++ b/scipy/base/src/arrayobject.c
@@ -3020,7 +3020,7 @@ PyArray_New(PyTypeObject *subtype, int nd, intp *dims, int type_num,
{
PyArrayObject *self;
PyArray_Descr *descr;
- int i;
+ register int i;
intp sd, temp;
descr = PyArray_DescrFromType(type_num);