diff options
author | David Cournapeau <cournape@gmail.com> | 2008-10-08 13:35:27 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-10-08 13:35:27 +0000 |
commit | a62ee5a3683a995d49a1b93d205fe936cc6de6d1 (patch) | |
tree | 55833be488ff0afb4659365586a8e6dddde35509 /numpy/core/src/arraymethods.c | |
parent | 0f3fbf1eab50c35199908a0532de82c0b4917024 (diff) | |
download | numpy-a62ee5a3683a995d49a1b93d205fe936cc6de6d1.tar.gz |
Fix missing initializers warnings.
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 7615fcfb9..7cf409173 100644 --- a/numpy/core/src/arraymethods.c +++ b/numpy/core/src/arraymethods.c @@ -2021,7 +2021,7 @@ static PyMethodDef array_methods[] = { METH_VARARGS | METH_KEYWORDS, NULL}, {"view", (PyCFunction)array_view, METH_VARARGS | METH_KEYWORDS, NULL}, - {NULL, NULL} /* sentinel */ + {NULL, NULL, 0, NULL} /* sentinel */ }; #undef _ARET |