Skip to content

Commit a4dd926

Browse files
committed
use lsame instead EQ in iparam2stage
1 parent 7f9f675 commit a4dd926

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

SRC/iparam2stage.F

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,8 @@ INTEGER FUNCTION IPARAM2STAGE( ISPEC, NAME, OPTS,
178178
* ..
179179
* .. External Functions ..
180180
INTEGER ILAENV
181-
EXTERNAL ILAENV
181+
LOGICAL LSAME
182+
EXTERNAL ILAENV, LSAME
182183
* ..
183184
* .. Executable Statements ..
184185
*
@@ -310,7 +311,7 @@ INTEGER FUNCTION IPARAM2STAGE( ISPEC, NAME, OPTS,
310311
*
311312
* Will add the VECT OPTION HERE next release
312313
VECT = OPTS(1:1)
313-
IF( VECT.EQ.'N' ) THEN
314+
IF( LSAME( VECT, 'N' ) ) THEN
314315
LHOUS = MAX( 1, 4*NI )
315316
ELSE
316317
* This is not correct, it need to call the ALGO and the stage2

0 commit comments

Comments
 (0)