Skip to content

Commit

Permalink
Minor fix to ELM for IBM compiler
Browse files Browse the repository at this point in the history
Removes a comma after write statement

Fixes #2976
Fixes #2985

[BFB]
  • Loading branch information
bishtgautam committed Aug 1, 2019
1 parent 94d8ec6 commit b23128b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ subroutine EMIDPrintInfo(this, rank)
integer, optional :: rank

if (present(rank)) then
write(iulog,*),rank,') ' // trim(this%name)
write(iulog,*)rank,') ' // trim(this%name)
else
write(iulog,*)trim(this%name)
endif
Expand Down

0 comments on commit b23128b

Please sign in to comment.