Skip to content

Commit

Permalink
fix dummy arguments w/o values (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeniseWorthen authored Mar 12, 2024
1 parent 624920d commit 758491e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ufs/glc_elevclass_mod.F90
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ subroutine glc_get_elevation_classes_without_bareland(glc_topo, glc_elevclass, l
real(r8), intent(in) :: glc_topo(:) ! topographic height
integer , intent(out) :: glc_elevclass(:) ! elevation class
integer , intent(in) :: logunit
glc_elevclass = 0
end subroutine glc_get_elevation_classes_without_bareland

!-----------------------------------------------------------------------
Expand All @@ -45,6 +46,7 @@ subroutine glc_get_elevation_classes_with_bareland(glc_ice_covered, glc_topo, gl
real(r8), intent(in) :: glc_topo(:) ! ice topographic height
integer , intent(out) :: glc_elevclass(:) ! elevation class
integer , intent(in) :: logunit
glc_elevclass = 0
end subroutine glc_get_elevation_classes_with_bareland

!-----------------------------------------------------------------------
Expand All @@ -57,11 +59,12 @@ end function glc_mean_elevation_virtual

!-----------------------------------------------------------------------
subroutine glc_get_fractional_icecov(nec, glc_topo, glc_icefrac, glc_icefrac_ec, logunit)
integer , intent(in) :: nec ! number of elevation classes
integer , intent(in) :: nec ! number of elevation classes
real(r8), intent(in) :: glc_topo(:) ! topographic height
real(r8), intent(in) :: glc_icefrac(:)
real(r8), intent(out) :: glc_icefrac_ec(:,:)
integer , intent(in) :: logunit
glc_icefrac_ec = 0.0_r8
end subroutine glc_get_fractional_icecov

end module glc_elevclass_mod

0 comments on commit 758491e

Please sign in to comment.