Skip to content

Commit

Permalink
fix format statements for pgi
Browse files Browse the repository at this point in the history
  • Loading branch information
mmiesch committed May 7, 2021
1 parent b63e4cc commit 2699980
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/fv_diagnostics.F90
Original file line number Diff line number Diff line change
Expand Up @@ -3695,7 +3695,7 @@ subroutine range_check_3d(qname, q, is, ie, js, je, n_g, km, pos, q_low, q_hi, b
if (present(Time)) then
call get_date(Time, year, month, day, hour, minute, second)
if (master) write(*,999) year, month, day, hour, minute, second
999 format(' Range violation on: ', I4, '/', I02, '/', I02, ' ', I02, ':', I02, ':', I02)
999 format(' Range violation on: ', I4, '/', I2, '/', I2, ' ', I2, ':', I2, ':', I2)
endif
if ( present(bad_range) ) then
bad_range = .true.
Expand Down Expand Up @@ -3760,7 +3760,7 @@ subroutine range_check_2d(qname, q, is, ie, js, je, n_g, pos, q_low, q_hi, bad_r
if (present(Time)) then
call get_date(Time, year, month, day, hour, minute, second)
if (master) write(*,999) year, month, day, hour, minute, second
999 format(' Range violation on: ', I4, '/', I02, '/', I02, ' ', I02, ':', I02, ':', I02)
999 format(' Range violation on: ', I4, '/', I2, '/', I2, ' ', I2, ':', I2, ':', I2)
endif
if ( present(bad_range) ) then
bad_range = .true.
Expand Down

0 comments on commit 2699980

Please sign in to comment.