Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ocean_merge - Increase directory path variable length #1003

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions sorc/ocean_merge.fd/merge_lake_ocnmsk.F90
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ program merge_lake_ocnmsk

implicit none

character(len=120) :: pth1
character(len=120) :: pth2,pth3
character(len=200) :: pth1
character(len=200) :: pth2,pth3
GeorgeGayno-NOAA marked this conversation as resolved.
Show resolved Hide resolved
character(len=10) :: atmres,ocnres

integer :: binary_lake
Expand Down
6 changes: 3 additions & 3 deletions sorc/ocean_merge.fd/namelist.F90
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ subroutine read_nml(ocean_mask_dir, lake_mask_dir, atmres,ocnres,out_dir,binary_

integer :: unit=7, io_status

character(len=120), intent(out) :: ocean_mask_dir
character(len=120), intent(out) :: lake_mask_dir
character(len=120), intent(out) :: out_dir
character(len=200), intent(out) :: ocean_mask_dir
character(len=200), intent(out) :: lake_mask_dir
character(len=200), intent(out) :: out_dir
character(len=10), intent(out) :: atmres,ocnres
integer, intent(out):: binary_lake

Expand Down
6 changes: 3 additions & 3 deletions tests/ocean_merge/ftst_read_nml.F90
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ program read_namelist

implicit none

character(len=120) :: ocean_mask_dir
character(len=120) :: lake_mask_dir
character(len=120) :: out_dir
character(len=200) :: ocean_mask_dir
character(len=200) :: lake_mask_dir
character(len=200) :: out_dir
character(len=10) :: atmres,ocnres

integer :: binary_lake
Expand Down
Loading