summaryrefslogtreecommitdiff
path: root/scipy/base/src/arrayobject.c
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2005-09-27 06:32:42 +0000
committerTravis Oliphant <oliphant@enthought.com>2005-09-27 06:32:42 +0000
commit1717eb786e66c890fa93b271d52b4d18dbfa7ee7 (patch)
tree76b91913276399be1c4c8fcfc503fdfdbadd9c5d /scipy/base/src/arrayobject.c
parentc36e940d20d53b73f71a576274f227e6b041f913 (diff)
downloadnumpy-1717eb786e66c890fa93b271d52b4d18dbfa7ee7.tar.gz
Changed OWN_DATA to OWNDATA
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 2a56f6bb5..6a90f2508 100644
--- a/scipy/base/src/arrayobject.c
+++ b/scipy/base/src/arrayobject.c
@@ -3445,7 +3445,7 @@ array_flags_get(PyArrayObject *self)
self->flags & flag ? Py_True : Py_False)
ADDFLAG(CONTIGUOUS);
- ADDFLAG(OWN_DATA);
+ ADDFLAG(OWNDATA);
ADDFLAG(FORTRAN);
ADDFLAG(ALIGNED);
ADDFLAG(NOTSWAPPED);