Skip to content

Commit f950312

Browse files
authored
Fix macro used in argument conversion (LAPACK PR 458)
1 parent 336e354 commit f950312

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lapack-netlib/LAPACKE/src/lapacke_zgesvdq.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ lapack_int LAPACKE_zgesvdq( int matrix_layout, char joba, char jobp,
7171
goto exit_level_0;
7272
}
7373
liwork = iwork_query;
74-
lcwork = LAPACK_C2INT(cwork_query);
74+
lcwork = LAPACK_Z2INT(cwork_query);
7575
lrwork = (lapack_int)rwork_query;
7676
/* Allocate memory for work arrays */
7777
iwork = (lapack_int*)LAPACKE_malloc( sizeof(lapack_int) * liwork );

0 commit comments

Comments
 (0)