summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Oliphant <oliphant@enthought.com>2007-05-31 17:26:31 +0000
committerTravis Oliphant <oliphant@enthought.com>2007-05-31 17:26:31 +0000
commit94900c38a015d2464c1a3d23c19606bc953ec702 (patch)
tree7125db9922acd2e9cc925c44e89541087b29b26e
parent47478cba842b48c43846d7f343261154b7f16b66 (diff)
downloadnumpy-94900c38a015d2464c1a3d23c19606bc953ec702.tar.gz
Fix 64-bit zgeqrf on trunk.
-rw-r--r--numpy/linalg/lapack_litemodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/linalg/lapack_litemodule.c b/numpy/linalg/lapack_litemodule.c
index 778aa55de..d1ba200cf 100644
--- a/numpy/linalg/lapack_litemodule.c
+++ b/numpy/linalg/lapack_litemodule.c
@@ -755,7 +755,7 @@ lapack_lite_zgeqrf(PyObject *self, PyObject *args)
int lda;
int info;
- TRY(PyArg_ParseTuple(args,"llOlOOll",&m,&n,&a,&lda,&tau,&work,&lwork,&info));
+ TRY(PyArg_ParseTuple(args,"iiOiOOii",&m,&n,&a,&lda,&tau,&work,&lwork,&info));
/* check objects and convert to right storage order */
TRY(check_object(a,PyArray_CDOUBLE,"a","PyArray_CDOUBLE","zgeqrf"));