Skip to content

Commit 69f4e8b

Browse files
authored
Fix missing comma on continued line
EXTERNAL declaration of subroutines missed a comma before the continuation line, causing a strange run-together name to appear in the object when compiled with ifort.
1 parent e072e68 commit 69f4e8b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lapack-netlib/SRC/dsbev_2stage.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ SUBROUTINE DSBEV_2STAGE( JOBZ, UPLO, N, KD, AB, LDAB, W, Z, LDZ,
239239
EXTERNAL LSAME, DLAMCH, DLANSB, ILAENV
240240
* ..
241241
* .. External Subroutines ..
242-
EXTERNAL DLASCL, DSCAL, DSTEQR, DSTERF, XERBLA
242+
EXTERNAL DLASCL, DSCAL, DSTEQR, DSTERF, XERBLA,
243243
$ DSYTRD_SB2ST
244244
* ..
245245
* .. Intrinsic Functions ..

0 commit comments

Comments
 (0)