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 8048b74 commit 4416581Copy full SHA for 4416581
LAPACKE/src/lapacke_ztfsm_work.c
@@ -51,7 +51,7 @@ lapack_int API_SUFFIX(LAPACKE_ztfsm_work)( int matrix_layout, char transr, char
51
lapack_int mn = m;
52
lapack_complex_double* b_t = NULL;
53
lapack_complex_double* a_t = NULL;
54
- if( LAPACKE_lsame( side, 'r' ) ) mn = n;
+ if( API_SUFFIX(LAPACKE_lsame)( side, 'r' ) ) mn = n;
55
/* Check leading dimension(s) */
56
if( ldb < m ) {
57
info = -12;
0 commit comments