Skip to content

Commit 8048b74

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LAPACKE/src/lapacke_stfsm_work.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ lapack_int API_SUFFIX(LAPACKE_stfsm_work)( int matrix_layout, char transr, char
5050
lapack_int mn = MAX(1,m);
5151
float* b_t = NULL;
5252
float* a_t = NULL;
53-
if( LAPACKE_lsame( side, 'r' ) ) mn = n;
53+
if( API_SUFFIX(LAPACKE_lsame)( side, 'r' ) ) mn = n;
5454
/* Check leading dimension(s) */
5555
if( ldb < m ) {
5656
info = -12;

0 commit comments

Comments
 (0)