Skip to content

Commit

Permalink
give format a length
Browse files Browse the repository at this point in the history
  • Loading branch information
jedwards4b committed Jan 31, 2024
1 parent 455b2be commit 170adbe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mediator/med_phases_cdeps_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ subroutine med_phases_cdeps_run(gcomp, rc)
if (size(sdat(n1,n2)%stream) == 0 .and. streamid /= 0) then
! Debug print
if (maintask) then
write(logunit,'(a,i)') trim(subname)//": initialize stream ", streamid
write(logunit,'(a,i3)') trim(subname)//": initialize stream ", streamid
end if

! Allocate temporary variable to store file names in the stream
Expand Down Expand Up @@ -258,7 +258,7 @@ subroutine med_phases_cdeps_run(gcomp, rc)
if (size(sdat(n1,n2)%stream) > 0) then
! Debug print
if (maintask) then
write(logunit,'(a,i)') trim(subname)//": read stream "//trim(compname(n1))//" -> "//trim(compname(n2))
write(logunit,'(a)') trim(subname)//": read stream "//trim(compname(n1))//" -> "//trim(compname(n2))
end if

! Read data
Expand Down

0 comments on commit 170adbe

Please sign in to comment.