Browse Source

Fix actual arguments (Reference-LAPACK PR 885)

pull/4155/head
Martin Kroeker GitHub 2 years ago
parent
commit
293e0f66c7
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      lapack-netlib/SRC/dtrsyl3.f

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

@@ -1220,7 +1220,7 @@
*
SCALOC = MIN( BIGNUM / SCAL, ONE / BUF )
BUF = BUF * SCALOC
CALL DLASCL( 'G', -1, -1, ONE, SCALOC, M, N, C, LDC, IWORK )
CALL DLASCL( 'G', -1, -1, ONE, SCALOC, M, N, C, LDC, IWORK(1) )
END IF
*
* Combine with buffer scaling factor. SCALE will be flushed if


Loading…
Cancel
Save