Skip to content
This repository was archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
Removed the trim from the message passer so that formatting can be al…
Browse files Browse the repository at this point in the history
…igned manually.
  • Loading branch information
daminton committed Sep 9, 2021
1 parent 4675c76 commit ef8ac1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/modules/walltime_classes.f90
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ module subroutine walltime_finish(self, nsubsteps, message)
wall_main = count_delta_main / (self%count_rate * 1.0_DP)
wall_per_substep = wall_step / nsubsteps

fmt = '("' // trim(adjustl(message)) // '",' // walltimefmt // ')'
fmt = '("' // adjustl(message) // '",' // walltimefmt // ')'
write(*,trim(adjustl(fmt))) wall_main, wall_per_substep

call self%start()
Expand Down

0 comments on commit ef8ac1d

Please sign in to comment.