Skip to content

Commit

Permalink
Merge pull request #3238 from martin-frbg/lapack555
Browse files Browse the repository at this point in the history
Correct function name in error message from SLASQ2 (LAPACK PR555)
  • Loading branch information
martin-frbg authored May 17, 2021
2 parents e1911b2 + 5c729c6 commit 03b4d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lapack-netlib/SRC/slasq2.f
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ SUBROUTINE SLASQ2( N, Z, INFO )
*
IF( Z( 1 ).LT.ZERO ) THEN
INFO = -201
CALL XERBLA( 'DLASQ2', 2 )
CALL XERBLA( 'SLASQ2', 2 )
RETURN
ELSE IF( Z( 2 ).LT.ZERO ) THEN
INFO = -202
Expand Down

0 comments on commit 03b4d79

Please sign in to comment.