Skip to content

Commit 04b02f0

Browse files
authored
Add missing API_SUFFIX wrapper
1 parent a7b82ed commit 04b02f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LAPACKE/src/lapacke_stfsm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ lapack_int API_SUFFIX(LAPACKE_stfsm)( int matrix_layout, char transr, char side,
4444
#ifndef LAPACK_DISABLE_NAN_CHECK
4545
if( LAPACKE_get_nancheck() ) {
4646
lapack_int mn = m;
47-
if( LAPACKE_lsame( side, 'r' ) ) mn = n;
47+
if( API_SUFFIX(LAPACKE_lsame)( side, 'r' ) ) mn = n;
4848
/* Optionally check input matrices for NaNs */
4949
if( IS_S_NONZERO(alpha) ) {
5050
if( API_SUFFIX(LAPACKE_stf_nancheck)( matrix_layout, transr, uplo, diag, mn, a ) ) {

0 commit comments

Comments
 (0)