Skip to content

Commit 1596780

Browse files
authored
Define type conversions explicitly (Reference-LAPACK PR703)
1 parent 4ab4d6f commit 1596780

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lapack-netlib/SRC/cggrqf.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ SUBROUTINE CGGRQF( M, P, N, A, LDA, TAUA, B, LDB, TAUB, WORK,
275275
* RQ factorization of M-by-N matrix A: A = R*Q
276276
*
277277
CALL CGERQF( M, N, A, LDA, TAUA, WORK, LWORK, INFO )
278-
LOPT = REAL( WORK( 1 ) )
278+
LOPT = INT( WORK( 1 ) )
279279
*
280280
* Update B := B*Q**H
281281
*

0 commit comments

Comments
 (0)