mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-22 04:11:16 -05:00
Send real, not int, to indexx(). Should prevent floating exception message on exit.
This commit is contained in:
parent
f65b7925a7
commit
7664a63465
@ -81,7 +81,7 @@ subroutine display(nkeep,ftol)
|
||||
endif
|
||||
kz=k
|
||||
if(nstart.eq.1) then
|
||||
call indexx(utc2,kz,indx2)
|
||||
call indexx(float(utc2(1:kz)),kz,indx2)
|
||||
k3=0
|
||||
do k=1,kz
|
||||
k3=min(k3+1,400)
|
||||
@ -89,7 +89,7 @@ subroutine display(nkeep,ftol)
|
||||
enddo
|
||||
nstart=0
|
||||
else
|
||||
call indexx(utc2,kz,indx2)
|
||||
call indexx(float(utc2(1:kz)),kz,indx2)
|
||||
do k=1,kz
|
||||
k3=min(k3+1,400)
|
||||
line3(k3)=line2(indx2(k))
|
||||
@ -108,7 +108,7 @@ subroutine display(nkeep,ftol)
|
||||
j0=j
|
||||
enddo
|
||||
kz=k
|
||||
call indexx(utc2,kz,indx2)
|
||||
call indexx(float(utc2(1:kz)),kz,indx2)
|
||||
do k=1,kz
|
||||
k3=min(k3+1,400)
|
||||
line3(k3)=line2(indx2(k))
|
||||
|
Loading…
Reference in New Issue
Block a user