From 302686ace014d7be82812c218121f00f5b28cdd1 Mon Sep 17 00:00:00 2001
From: Tom Rondeau <trondeau@vt.edu>
Date: Thu, 3 Sep 2009 22:50:43 -0400
Subject: Fixing a line in the clock recovery algorithm. This works with a bit
 larger error than there proably should be.

---
 gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.cc | 1 -
 1 file changed, 1 deletion(-)

(limited to 'gnuradio-core/src/lib')

diff --git a/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.cc b/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.cc
index 0efbc8a51..91cbf74c6 100644
--- a/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.cc
+++ b/gnuradio-core/src/lib/filter/gr_pfb_clock_sync_ccf.cc
@@ -226,7 +226,6 @@ gr_pfb_clock_sync_ccf::general_work (int noutput_items,
     if(newfilter != (int)d_last_filter)
       d_acc = 0.5;
 
-    d_last_filter = newfilter % d_nfilters;
     if(newfilter >= (int)d_nfilters) {
       d_last_filter = newfilter - d_nfilters;
       count++;
-- 
cgit v1.2.3