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.
This commit is contained in:
parent
e072e68aa0
commit
69f4e8b86c
|
@ -239,7 +239,7 @@
|
|||
EXTERNAL LSAME, DLAMCH, DLANSB, ILAENV
|
||||
* ..
|
||||
* .. External Subroutines ..
|
||||
EXTERNAL DLASCL, DSCAL, DSTEQR, DSTERF, XERBLA
|
||||
EXTERNAL DLASCL, DSCAL, DSTEQR, DSTERF, XERBLA,
|
||||
$ DSYTRD_SB2ST
|
||||
* ..
|
||||
* .. Intrinsic Functions ..
|
||||
|
|
Loading…
Reference in New Issue