Skip to content

Commit

Permalink
Adds missing arguments after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
gustavo-marques committed Sep 17, 2019
1 parent 62e3227 commit 3cb68d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/parameterizations/vertical/MOM_diabatic_driver.F90
Original file line number Diff line number Diff line change
Expand Up @@ -2864,8 +2864,8 @@ end subroutine layered_diabatic

!> Returns pointers or values of members within the diabatic_CS type. For extensibility,
!! each returned argument is an optional argument
subroutine extract_diabatic_member(CS, opacity_CSp, optics_CSp, &
evap_CFL_limit, minimum_forcing_depth, KPP_CSp, energetic_PBL_CSp)
subroutine extract_diabatic_member(CS, opacity_CSp, optics_CSp, evap_CFL_limit, &
minimum_forcing_depth, KPP_CSp, energetic_PBL_CSp, diabatic_aux_CSp)
type(diabatic_CS), intent(in ) :: CS !< module control structure
! All output arguments are optional
type(opacity_CS), optional, pointer :: opacity_CSp !< A pointer to be set to the opacity control structure
Expand Down
2 changes: 1 addition & 1 deletion src/tracer/MOM_tracer_hor_diff.F90
Original file line number Diff line number Diff line change
Expand Up @@ -1414,7 +1414,7 @@ end subroutine tracer_epipycnal_ML_diff


!> Initialize lateral tracer diffusion module
subroutine tracer_hor_diff_init(Time, G, param_file, diag, EOS, diabatic_CSp, CS)
subroutine tracer_hor_diff_init(Time, G, US, param_file, diag, EOS, diabatic_CSp, CS)
type(time_type), target, intent(in) :: Time !< current model time
type(ocean_grid_type), intent(in) :: G !< ocean grid structure
type(unit_scale_type), intent(in) :: US !< A dimensional unit scaling type
Expand Down

0 comments on commit 3cb68d3

Please sign in to comment.