Skip to content

Commit

Permalink
Merge pull request #8 from permamodel/mdpiper/fix-broken-build
Browse files Browse the repository at this point in the history
Remove unused parameter from subroutine call
  • Loading branch information
mdpiper authored Oct 4, 2024
2 parents 8cf0730 + 43f5be2 commit 10911ca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GIPL/gipl.f90
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ subroutine run_model
enddo
call interpolate(utemp_time, utemp(:, i_site), n_temp, utemp_time_i, utemp_i(:, i_site), n_time + 2)
call interpolate(snd_time, snd(:, i_site), n_snow, utemp_time_i, snd_i(:, i_site), n_time + 2)
call snowfix(model, utemp_i(:, i_site), snd_i(:, i_site), n_time + 2)
call snowfix(utemp_i(:, i_site), snd_i(:, i_site), n_time + 2)
call interpolate(stcon_time, stcon(:, i_site), n_stcon, utemp_time_i, stcon_i(:, i_site), n_time + 2)
enddo

Expand Down

0 comments on commit 10911ca

Please sign in to comment.