Remove unused arguments from the call to fix_contest_msg().

git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7962 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Joe Taylor
2017-07-27 18:57:53 +00:00
parent 1110902285
commit ed95b6d373
2 changed files with 6 additions and 6 deletions
+5 -5
View File
@@ -1,16 +1,16 @@
subroutine fix_contest_msg(mycall,mygrid,hiscall,msg)
subroutine fix_contest_msg(mygrid,msg)
! If msg is "mycall hiscall grid1" and distance from mygrid to grid1 is more
! thsn 10000 km, change "grid1" to "R grid2" where grid2 is the antipodes
! of grid1.
! If distance from mygrid to grid1 is more thsn 10000 km, change "grid1"
! to "R grid2" where grid2 is the antipodes of grid1.
character*6 mycall,mygrid,hiscall
character*6 mygrid
character*22 msg
character*6 g1,g2
logical isgrid
n=len(trim(msg))
if(n.lt.4) return
g1=msg(n-3:n)//' '
if(isgrid(g1)) then
call azdist(mygrid,g1,0.d0,nAz,nEl,nDmiles,nDkm,nHotAz,nHotABetter)