Skip to content

Commit 4d25c0a

Browse files
authored
chore: minor clean-up
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 04df633 commit 4d25c0a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/blas/base/dgemv/src/dgemv_ndarray.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ void API_SUFFIX(c_dgemv_ndarray)( const CBLAS_TRANSPOSE trans, const CBLAS_INT M
6060
int64_t strides[] = { strideA1, strideA2 };
6161
isrm = stdlib_ndarray_is_row_major( 2, strides );
6262

63-
if ( M == 0 || N == 0 || ( alpha == 0.0f && beta == 1.0f ) ) {
63+
if ( M == 0 || N == 0 || ( alpha == 0.0 && beta == 1.0 ) ) {
6464
return;
6565
}
6666
if ( isrm ) {

0 commit comments

Comments
 (0)