From: Wolfgang Bangerth Date: Mon, 30 Dec 2019 16:10:06 +0000 (-0700) Subject: Fix what looks like an obvious typo. X-Git-Tag: v9.2.0-rc1~756^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=888d1c386d4915e2e444aa4c68268478f926234d;p=dealii.git Fix what looks like an obvious typo. The BLAS_ZGER function is called a few lines below but doesn't have a prototype/declaration. --- diff --git a/bundled/umfpack/UMFPACK/Source/cholmod_blas.h b/bundled/umfpack/UMFPACK/Source/cholmod_blas.h index 303769054c..fba8a116ec 100644 --- a/bundled/umfpack/UMFPACK/Source/cholmod_blas.h +++ b/bundled/umfpack/UMFPACK/Source/cholmod_blas.h @@ -432,7 +432,7 @@ void BLAS_DGER (BLAS_INT *m, BLAS_INT *n, double *alpha, } \ } -void BLAS_ZGERU (BLAS_INT *m, BLAS_INT *n, double *alpha, +void BLAS_ZGER (BLAS_INT *m, BLAS_INT *n, double *alpha, double *X, BLAS_INT *incx, double *Y, BLAS_INT *incy, double *A, BLAS_INT *lda) ;