From ec7f9dcddd216019bcf15d162926c4df6355860e Mon Sep 17 00:00:00 2001 From: David Cournapeau Date: Wed, 16 Sep 2009 07:09:38 +0000 Subject: ENH: Fix some more uninitialized vars. --- numpy/lib/src/_compiled_base.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/src') 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 -- cgit v1.2.1