Skip to content

Commit 704d508

Browse files
authored
fix: update error messages
Signed-off-by: Athan <kgryte@gmail.com>
1 parent 76dd1a9 commit 704d508

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/blas/base/dsyr2/src/dsyr2_ndarray.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,19 +67,19 @@ void API_SUFFIX(c_dsyr2_ndarray)( const CBLAS_UPLO uplo, const CBLAS_INT N, cons
6767
return;
6868
}
6969
if ( strideX == 0 ) {
70-
c_xerbla( 5, "c_dsyr2_ndarray", "Error: invalid argument. Fifth argument must be a nonzero. Value: `%d`.", strideX );
70+
c_xerbla( 5, "c_dsyr2_ndarray", "Error: invalid argument. Fifth argument must be nonzero. Value: `%d`.", strideX );
7171
return;
7272
}
7373
if ( strideY == 0 ) {
74-
c_xerbla( 8, "c_dsyr2_ndarray", "Error: invalid argument. Eighth argument must be a nonzero. Value: `%d`.", strideY );
74+
c_xerbla( 8, "c_dsyr2_ndarray", "Error: invalid argument. Eighth argument must be nonzero. Value: `%d`.", strideY );
7575
return;
7676
}
7777
if ( strideA1 == 0 ) {
78-
c_xerbla( 11, "c_dsyr2_ndarray", "Error: invalid argument. Eleventh argument must be a nonzero. Value: `%d`.", strideA1 );
78+
c_xerbla( 11, "c_dsyr2_ndarray", "Error: invalid argument. Eleventh argument must be nonzero. Value: `%d`.", strideA1 );
7979
return;
8080
}
8181
if ( strideA2 == 0 ) {
82-
c_xerbla( 12, "c_dsyr2_ndarray", "Error: invalid argument. Twelfth argument must be a nonzero. Value: `%d`.", strideA2 );
82+
c_xerbla( 12, "c_dsyr2_ndarray", "Error: invalid argument. Twelfth argument must be nonzero. Value: `%d`.", strideA2 );
8383
return;
8484
}
8585
// Check whether we can avoid computation altogether...

0 commit comments

Comments
 (0)