Skip to content

Commit

Permalink
fix(mover): correct typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
langevin-usgs committed Mar 10, 2020
1 parent edeb2ed commit ef85ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Model/ModelUtilities/Mover.f90
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ subroutine set(this, line, inunit, iout, mname, pakorigins, pakmovers)
! -- Set pointer to QFROMMVR array in the receiver boundary package
temp_ptr => pakmovers(ipakloc2)%qfrommvr
if(this%irch2 < 1 .or. this%irch2 > size(temp_ptr)) then
call store_error('ERROR. PROVIDER ID < 1 OR GREATER THAN PACKAGE SIZE ')
call store_error('ERROR. RECEIVER ID < 1 OR GREATER THAN PACKAGE SIZE ')
write(errmsg, '(4x,a,i0,a,i0)') 'RECEIVER ID = ', this%irch2, &
'; PACKAGE SIZE = ', size(temp_ptr)
call store_error(trim(errmsg))
Expand Down

0 comments on commit ef85ec0

Please sign in to comment.