summaryrefslogtreecommitdiff
path: root/scipy/base/src/arraymethods.c
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-12-14 23:43:56 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-12-14 23:43:56 +0000
commit532fb2946faec74c3f5bb47a9f7f796eb26624b9 (patch)
treeb5562159c31a04508cadd62a9f3908771a07391a /scipy/base/src/arraymethods.c
parent562bba5ceb22b4581b9b311cd2408bee81701454 (diff)
downloadnumpy-532fb2946faec74c3f5bb47a9f7f796eb26624b9.tar.gz
Made names more consistent, fixed byteorder for recarrays
Diffstat (limited to 'scipy/base/src/arraymethods.c')
-rw-r--r--scipy/base/src/arraymethods.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scipy/base/src/arraymethods.c b/scipy/base/src/arraymethods.c
index 1b597baf1..55161e941 100644
--- a/scipy/base/src/arraymethods.c
+++ b/scipy/base/src/arraymethods.c
@@ -607,7 +607,7 @@ array_getarray(PyArrayObject *self, PyObject *args)
}
if ((newtype == NULL) || \
- PyArray_EquivalentTypes(self->descr, newtype)) {
+ PyArray_EquivTypes(self->descr, newtype)) {
return (PyObject *)self;
}
else {