diff options
author | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:09:38 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-09-16 07:09:38 +0000 |
commit | ec7f9dcddd216019bcf15d162926c4df6355860e (patch) | |
tree | 64a196fa57786a93d0ef372fc58b1d4e274231bc /numpy/lib/src/_compiled_base.c | |
parent | 30a0e8e344f8a53870df423338188df22f234605 (diff) | |
download | numpy-ec7f9dcddd216019bcf15d162926c4df6355860e.tar.gz |
ENH: Fix some more uninitialized vars.
Diffstat (limited to 'numpy/lib/src/_compiled_base.c')
-rw-r--r-- | numpy/lib/src/_compiled_base.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/src/_compiled_base.c b/numpy/lib/src/_compiled_base.c index a103fe8d0..3a8193f63 100644 --- a/numpy/lib/src/_compiled_base.c +++ b/numpy/lib/src/_compiled_base.c @@ -889,7 +889,7 @@ static struct PyMethodDef methods[] = { METH_VARARGS | METH_KEYWORDS, NULL}, {"unpackbits", (PyCFunction)io_unpack, METH_VARARGS | METH_KEYWORDS, NULL}, - {NULL, NULL} /* sentinel */ + {NULL, NULL, 0, NULL} /* sentinel */ }; static void |