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/linalg/lapack_litemodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/linalg') diff --git a/numpy/linalg/lapack_litemodule.c b/numpy/linalg/lapack_litemodule.c index a3ab42466..5f7f08359 100644 --- a/numpy/linalg/lapack_litemodule.c +++ b/numpy/linalg/lapack_litemodule.c @@ -815,7 +815,7 @@ static struct PyMethodDef lapack_lite_module_methods[] = { lameth(zpotrf), lameth(zgeqrf), lameth(zungqr), - { NULL,NULL,0} + { NULL,NULL,0, NULL} }; static char lapack_lite_module_documentation[] = ""; -- cgit v1.2.1