Skip to content

Commit 3a38dad

Browse files
authored
Merge pull request #3828 from martin-frbg/lapack703-3
Define type conversions explicitly (Reference-LAPACK PR703)
2 parents 4ab4d6f + 1596780 commit 3a38dad

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)