From daf7f059ddb5db14d6ae181438d8329ef87591dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien.villemot@ens.fr> Date: Fri, 2 Apr 2010 14:53:14 +0200 Subject: [PATCH] Minor fix in prototype of LAPACK dgees (cherry picked from commit b8bf1794ca2fa121ee660cf45732f700c55e3067) --- mex/sources/dynlapack.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mex/sources/dynlapack.h b/mex/sources/dynlapack.h index 7bed4b3147..5f04b7f27c 100644 --- a/mex/sources/dynlapack.h +++ b/mex/sources/dynlapack.h @@ -70,7 +70,7 @@ extern "C" { void dgees(LACHAR jobvs, LACHAR sort, const void *select, CONST_LAINT n, LADOU a, CONST_LAINT lda, LAINT sdim, LADOU wr, LADOU wi, LADOU vs, CONST_LAINT ldvs, - LADOU work, CONST_LAINT lwork, const void *bwork, LAINT info); + LADOU work, CONST_LAINT lwork, LAINT bwork, LAINT info); #define dgecon FORTRAN_WRAPPER(dgecon) void dgecon(LACHAR norm, CONST_LAINT n, CONST_LADOU a, CONST_LAINT lda, -- GitLab