Skip to content

Commit

Permalink
Bug fix for unary operator in INITPOST_GFS_NEMS_MPIIO.f. (NOAA-EMC#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
WenMeng-NOAA committed Feb 25, 2020
1 parent 5b49c60 commit e7be856
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sorc/ncep_post.fd/INITPOST_GFS_NEMS_MPIIO.f
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ SUBROUTINE INITPOST_GFS_NEMS_MPIIO(iostatusAER)
if (j > jm-jtem+1) then
npass = npass + nint(0.5*(j-jm+jtem-1))
elseif (j < jtem) then
npass = npass + nint(0.5*(jtem--j))
npass = npass + nint(0.5*(jtem-j))
endif
! npass = 0
!$omp parallel do private(i,l,ll)
Expand Down

0 comments on commit e7be856

Please sign in to comment.