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/linalg | |
parent | 30a0e8e344f8a53870df423338188df22f234605 (diff) | |
download | numpy-ec7f9dcddd216019bcf15d162926c4df6355860e.tar.gz |
ENH: Fix some more uninitialized vars.
Diffstat (limited to 'numpy/linalg')
-rw-r--r-- | numpy/linalg/lapack_litemodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
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[] = ""; |