Skip to content

Commit

Permalink
fix compilation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
grantfirl committed Oct 9, 2024
1 parent bf3e1e1 commit 4782f68
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions physics/SFC_Models/Land/Noahmp/lnd_iau_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ module land_iau_mod

end type land_iau_control_type

public land_iau_control_type, land_iau_external_data_type, land_iau_mod_set_control, &
public land_iau_control_type, land_iau_external_data_type, land_iau_state_type, land_iau_mod_set_control, &
land_iau_mod_init, land_iau_mod_getiauforcing, land_iau_mod_finalize, calculate_landinc_mask

contains
Expand All @@ -130,7 +130,7 @@ subroutine land_iau_mod_set_control(Land_IAU_Control,fn_nml,input_nml_file_i, me
logical :: exists
character(len=512) :: ioerrmsg

character(len=:), dimension(:) :: input_nml_file => null()
character(len=:), pointer, dimension(:) :: input_nml_file => null()
character(len=4) :: iosstr

!> land iau setting read from namelist
Expand Down
2 changes: 1 addition & 1 deletion physics/SFC_Models/Land/Noahmp/noahmpdrv.F90
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ subroutine noahmpdrv_init(lsm, lsm_noahmp, me, &
type(land_iau_state_type), intent(inout) :: Land_IAU_state
integer, intent(in) :: mpi_root ! = GFS_Control%master
character(*), intent(in) :: fn_nml
character(len=:), intent(in), dimension(:) :: input_nml_file
character(len=:), pointer, intent(in), dimension(:) :: input_nml_file
integer, intent(in) :: isc, jsc, ncols, nx, ny, nblks !=GFS_Control%ncols, %nx, %ny, nblks
integer, intent(in) :: tile_num !GFS_control_type%tile_num
integer, dimension(:), intent(in) :: blksz !(one:) !GFS_Control%blksz
Expand Down

0 comments on commit 4782f68

Please sign in to comment.