Skip to content

Commit

Permalink
Fix missing comma
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Köhler committed Aug 22, 2023
1 parent 650c432 commit 91c7f9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BLAS/TESTING/cblat3.f
Original file line number Diff line number Diff line change
Expand Up @@ -3846,7 +3846,7 @@ SUBROUTINE CCHK6( SNAME, EPS, THRESH, NOUT, NTRA, TRACE, REWI,
* Call the subroutine.
*
IF( TRACE )
$ WRITE( NTRA, FMT = 9995 )NC, SNAME, UPLO
$ WRITE( NTRA, FMT = 9995 )NC, SNAME, UPLO,
$ TRANSA, TRANSB, N, K, ALPHA, LDA, LDB,
$ BETA, LDC
IF( REWI )
Expand Down
2 changes: 1 addition & 1 deletion BLAS/TESTING/zblat3.f
Original file line number Diff line number Diff line change
Expand Up @@ -3860,7 +3860,7 @@ SUBROUTINE ZCHK6( SNAME, EPS, THRESH, NOUT, NTRA, TRACE, REWI,
* Call the subroutine.
*
IF( TRACE )
$ WRITE( NTRA, FMT = 9995 )NC, SNAME, UPLO
$ WRITE( NTRA, FMT = 9995 )NC, SNAME, UPLO,
$ TRANSA, TRANSB, N, K, ALPHA, LDA, LDB,
$ BETA, LDC
IF( REWI )
Expand Down

0 comments on commit 91c7f9e

Please sign in to comment.