We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04b02f0 commit 8048b74Copy full SHA for 8048b74
LAPACKE/src/lapacke_stfsm_work.c
@@ -50,7 +50,7 @@ lapack_int API_SUFFIX(LAPACKE_stfsm_work)( int matrix_layout, char transr, char
50
lapack_int mn = MAX(1,m);
51
float* b_t = NULL;
52
float* a_t = NULL;
53
- if( LAPACKE_lsame( side, 'r' ) ) mn = n;
+ if( API_SUFFIX(LAPACKE_lsame)( side, 'r' ) ) mn = n;
54
/* Check leading dimension(s) */
55
if( ldb < m ) {
56
info = -12;
0 commit comments