Commit 2c993d0e90c23b8bdfa0dc9725569dd25afd452c

Authored by William Daniau
1 parent 204ded3d3d
Exists in master

umfpack : Correct declaration problem for zgeru resulting in a warning or error

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

fvn_sparse/UMFPACK/Source/cholmod_blas.h
... ... @@ -471,7 +471,7 @@
471 471 } \
472 472 }
473 473  
474   -void BLAS_ZGERU (BLAS_INT *m, BLAS_INT *n, double *alpha,
  474 +void BLAS_ZGER (BLAS_INT *m, BLAS_INT *n, double *alpha,
475 475 double *X, BLAS_INT *incx, double *Y, BLAS_INT *incy,
476 476 double *A, BLAS_INT *lda) ;
477 477