Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed mismatch with refactored argument
  • Loading branch information
daminton committed Jul 23, 2021
1 parent ca6eb42 commit 92a72d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/ejecta/ejecta_emplace.f90
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
! The cutoff of ejecta thickness is still buggy.
!
!**********************************************************************************************************************************
subroutine ejecta_emplace(user,surf,crater,domain,ejb,ejtble,deltaMtot,ejbmass,age,age_resolution)
subroutine ejecta_emplace(user,surf,crater,domain,ejb,ejtble,deltaMtot,age,age_resolution)
use module_globals
use module_util
use module_io
Expand All @@ -92,7 +92,6 @@ subroutine ejecta_emplace(user,surf,crater,domain,ejb,ejtble,deltaMtot,ejbmass,a
integer(I4B),intent(in) :: ejtble
type(ejbtype),dimension(ejtble),intent(in) :: ejb
real(DP),intent(in) :: deltaMtot
real(DP),intent(out) :: ejbmass
real(DP),intent(in) :: age
real(DP),intent(in) :: age_resolution

Expand Down
3 changes: 1 addition & 2 deletions src/ejecta/module_ejecta.f90
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module module_ejecta
save

interface
subroutine ejecta_emplace(user,surf,crater,domain,ejb,ejtble,deltaMtot,ejbmass,age,age_resolution)
subroutine ejecta_emplace(user,surf,crater,domain,ejb,ejtble,deltaMtot,age,age_resolution)
use module_globals
implicit none
type(usertype),intent(in) :: user
Expand All @@ -35,7 +35,6 @@ subroutine ejecta_emplace(user,surf,crater,domain,ejb,ejtble,deltaMtot,ejbmass,a
integer(I4B),intent(in) :: ejtble
type(ejbtype),dimension(ejtble),intent(in) :: ejb
real(DP),intent(in) :: deltaMtot
real(DP),intent(out) :: ejbmass
real(DP),intent(in) :: age
real(DP),intent(in) :: age_resolution
end subroutine ejecta_emplace
Expand Down

0 comments on commit 92a72d9

Please sign in to comment.