Skip to content

Commit d1e2b9b

Browse files
committed
chore: fix C lint errors (issue #7032)
1 parent c888997 commit d1e2b9b

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/blas/base/dger/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/dger/src/dger_f.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
* @param A matrix of coefficients
3636
* @param LDA stride of the first dimension of `A` (a.k.a., leading dimension of the matrix `A`)
3737
*/
38-
void API_SUFFIX(c_dger)( const CBLAS_LAYOUT layout, const CBLAS_INT M, const CBLAS_INT N, const double alpha, double *X, const CBLAS_INT strideX, double *Y, const CBLAS_INT strideY, double *A, const CBLAS_INT LDA ) {
38+
void API_SUFFIX(c_dger)( const CBLAS_LAYOUT layout, const CBLAS_INT M, const CBLAS_INT N, const double alpha, const double *X, const CBLAS_INT strideX, const double *Y, const CBLAS_INT strideY, double *A, const CBLAS_INT LDA ) {
3939
extern int RowMajorStrg; // global flag
4040

4141
RowMajorStrg = 0;

0 commit comments

Comments
 (0)