From 2194f3096a833329924ca94537a2c45c03c7d99d Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Wed, 6 Jan 2021 21:44:49 -0500 Subject: [PATCH] Don't count lines with blank message in "ndecoded". --- lib/decoder.f90 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/decoder.f90 b/lib/decoder.f90 index 32ffb9e38..1de956ecc 100644 --- a/lib/decoder.f90 +++ b/lib/decoder.f90 @@ -370,9 +370,7 @@ subroutine multimode_decoder(ss,id2,params,nfsample) close(13) if(ncontest.eq.6) close(19) if(params%nmode.eq.4 .or. params%nmode.eq.65 .or. params%nmode.eq.66) close(14) - return - contains subroutine jt4_decoded(this,snr,dt,freq,have_sync,sync,is_deep, & @@ -812,7 +810,7 @@ contains select type(this) type is (counting_q65_decoder) - this%decoded = this%decoded + 1 + if(idec.gt.0) this%decoded = this%decoded + 1 end select return