From: eb Date: Tue, 10 Jun 2008 15:48:12 +0000 (+0000) Subject: Applied patch from Dean Armstrong to fix gr_repeat (ticket:246). X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=b655e7dc6c96a7103f456eaadc07a0a0fcf8a130;p=debian%2Fgnuradio Applied patch from Dean Armstrong to fix gr_repeat (ticket:246). The QA code was not updated to detect the bug and should still be sorted out. git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@8568 221aa14e-8319-0410-a670-987f0aec2ac5 --- diff --git a/gnuradio-core/src/lib/general/gr_repeat.cc b/gnuradio-core/src/lib/general/gr_repeat.cc index aa1e1770..70bb44e5 100644 --- a/gnuradio-core/src/lib/general/gr_repeat.cc +++ b/gnuradio-core/src/lib/general/gr_repeat.cc @@ -62,7 +62,7 @@ gr_repeat::work(int noutput_items, out += d_itemsize; } - i += d_itemsize; + in += d_itemsize; } return noutput_items;