mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-07-06 11:55:15 -04:00
Correct a longstanding error in values of "nw()" returned by subroutine split77().
This commit is contained in:
parent
901e9dbc38
commit
f51a7d4f7d
@ -824,7 +824,9 @@ subroutine split77(msg,nwords,nw,w)
|
|||||||
iz=j !Message length
|
iz=j !Message length
|
||||||
nwords=k !Number of words in msg
|
nwords=k !Number of words in msg
|
||||||
if(nwords.le.0) go to 900
|
if(nwords.le.0) go to 900
|
||||||
nw(k)=len(trim(w(k)))
|
do i=1,nwords
|
||||||
|
nw(i)=len(trim(w(i)))
|
||||||
|
enddo
|
||||||
msg(iz+1:)=' '
|
msg(iz+1:)=' '
|
||||||
if(nwords.lt.3) go to 900
|
if(nwords.lt.3) go to 900
|
||||||
call chkcall(w(3),bcall_1,ok1)
|
call chkcall(w(3),bcall_1,ok1)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user