Browse Source

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.
tags/v0.2.20^2
Martin Kroeker GitHub 8 years ago
parent
commit
69f4e8b86c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lapack-netlib/SRC/dsbev_2stage.f

+ 1
- 1
lapack-netlib/SRC/dsbev_2stage.f View File

@@ -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…
Cancel
Save