Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Replace empty strings with a single blank.
  • Loading branch information
friedc authored May 30, 2022
commit e5dc8d07c8f6851cdf885cd113d1060b1f7793a8
2 changes: 1 addition & 1 deletion BLAS/SRC/xerbla_array.f
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ SUBROUTINE XERBLA_ARRAY(SRNAME_ARRAY, SRNAME_LEN, INFO)
EXTERNAL XERBLA
* ..
* .. Executable Statements ..
SRNAME = ''
SRNAME = ' '
DO I = 1, MIN( SRNAME_LEN, LEN( SRNAME ) )
SRNAME( I:I ) = SRNAME_ARRAY( I )
END DO
Expand Down