diff options
author | cookedm <cookedm@localhost> | 2007-11-08 16:12:38 +0000 |
---|---|---|
committer | cookedm <cookedm@localhost> | 2007-11-08 16:12:38 +0000 |
commit | 064d8fecb1494004d81230b681dce8f7e208cf6f (patch) | |
tree | 7f954d421d9cd0d3ed8e332d36c2665cb515be3a /numpy | |
parent | 0cb0309da5775daf4400cb0cc6e5d49cb617a40e (diff) | |
download | numpy-064d8fecb1494004d81230b681dce8f7e208cf6f.tar.gz |
Fix for #609: numpy/linalg/lapack_litemodule.c:lapack_lite_zgeqrf int vs. long
Diffstat (limited to 'numpy')
-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 d1ba200cf..026233262 100644 --- a/numpy/linalg/lapack_litemodule.c +++ b/numpy/linalg/lapack_litemodule.c @@ -765,7 +765,7 @@ lapack_lite_zgeqrf(PyObject *self, PyObject *args) lapack_lite_status__ = \ FNAME(zgeqrf)(&m, &n, ZDATA(a), &lda, ZDATA(tau), ZDATA(work), &lwork, &info); - return Py_BuildValue("{s:l,s:l,s:l,s:l,s:l,s:l}","zgeqrf_",lapack_lite_status__,"m",m,"n",n,"lda",lda,"lwork",lwork,"info",info); + return Py_BuildValue("{s:i,s:i,s:i,s:i,s:i,s:i}","zgeqrf_",lapack_lite_status__,"m",m,"n",n,"lda",lda,"lwork",lwork,"info",info); } |