Skip to content

Commit 0bb2565

Browse files
committed
fix type issue with xlf
1 parent d8f6ff6 commit 0bb2565

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/riverroute/RtmMod.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2579,7 +2579,7 @@ subroutine MOSART_init
25792579
TUnit%hlen(iunit) = TUnit%area(iunit) / TUnit%rlenTotal(iunit) / 2._r8
25802580

25812581
! constrain hlen (hillslope length) values based on cell area
2582-
hlen_max = max(1000.0, sqrt(TUnit%area(iunit)))
2582+
hlen_max = max(1000.0_r8, sqrt(TUnit%area(iunit)))
25832583
if(TUnit%hlen(iunit) > hlen_max) then
25842584
TUnit%hlen(iunit) = hlen_max ! allievate the outlier in drainag\e density estimation. TO DO
25852585
end if

0 commit comments

Comments
 (0)