Skip to content

Commit

Permalink
replace mpp_init with mpp_exit
Browse files Browse the repository at this point in the history
  • Loading branch information
uramirez8707 committed Oct 3, 2024
1 parent cde8c9c commit ac45379
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test_fms/data_override/test_data_override_ongrid.F90
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ program test_data_override_ongrid
use netcdf, only: nf90_create, nf90_def_dim, nf90_def_var, nf90_enddef, nf90_put_var, &
nf90_close, nf90_put_att, nf90_clobber, nf90_64bit_offset, nf90_char, &
nf90_double, nf90_unlimited
use fms_mod, only: string
use fms_mod, only: string, fms_init, fms_end

implicit none

Expand All @@ -57,7 +57,7 @@ program test_data_override_ongrid

namelist / test_data_override_ongrid_nml / nhalox, nhaloy, test_case, nlon, nlat, layout, write_only

call mpp_init
call fms_init
call fms2_io_init

read (input_nml_file, test_data_override_ongrid_nml, iostat=io_status)
Expand Down Expand Up @@ -107,7 +107,7 @@ program test_data_override_ongrid
end select
endif

call mpp_exit
call fms_end

contains

Expand Down

0 comments on commit ac45379

Please sign in to comment.