git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7438 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
This commit is contained in:
Steven Franke 2017-01-01 16:45:47 +00:00
parent b8cc894a57
commit b166ead858

View File

@ -7,7 +7,7 @@ subroutine update_hasharray(recent_calls,nrecent,nhasharray)
nhasharray=-1
do i=1,nrecent
do j=i+1,nrecent
if( recent_calls(i) .ne. ' ' .and. recent_calls(j) .ne. ' ' ) then
if( recent_calls(i)(1:2) .ne. ' ' .and. recent_calls(j)(1:2) .ne. ' ' ) then
hashmsg=trim(recent_calls(i))//' '//trim(recent_calls(j))
call fmtmsg(hashmsg,iz)
call hash(hashmsg,22,ihash)