Skip to content

Commit

Permalink
GNU bug found in SCM CI
Browse files Browse the repository at this point in the history
  • Loading branch information
dustinswales committed Jul 13, 2023
1 parent 9465b6f commit c61a2a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions physics/GFS_ccpp_scheme_sim_pre.F90
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,9 @@ subroutine load_ccpp_scheme_sim(nlunit, nml_file, physics_process, iactive_T,
close (nlunit)

! Only proceed if scheme simulator requested.
if (prc_SWRAD_cfg(1) .or. prc_LWRAD_cfg(1) .or. prc_PBL_cfg(1) .or. &
prc_GWD_cfg(1) .or. prc_SCNV_cfg(1) .or. prc_DCNV_cfg(1) .or. &
prc_cldMP_cfg(1)) then
if (prc_SWRAD_cfg(1) == 1 .or. prc_LWRAD_cfg(1) == 1 .or. prc_PBL_cfg(1) == 1 .or. &
prc_GWD_cfg(1) == 1 .or. prc_SCNV_cfg(1) == 1 .or. prc_DCNV_cfg(1) == 1 .or. &
prc_cldMP_cfg(1) == 1 ) then
else
return
endif
Expand Down

0 comments on commit c61a2a6

Please sign in to comment.