summaryrefslogtreecommitdiff
path: root/gnuradio-core/src/lib/general
diff options
context:
space:
mode:
authoreb2008-06-10 15:48:12 +0000
committereb2008-06-10 15:48:12 +0000
commitb655e7dc6c96a7103f456eaadc07a0a0fcf8a130 (patch)
tree6dd72e6eae074a918bd6cac4ae0bc6725f4d5512 /gnuradio-core/src/lib/general
parent852ba2210329b25db1b2fe2423cec30175088f1f (diff)
downloadgnuradio-b655e7dc6c96a7103f456eaadc07a0a0fcf8a130.tar.gz
gnuradio-b655e7dc6c96a7103f456eaadc07a0a0fcf8a130.tar.bz2
gnuradio-b655e7dc6c96a7103f456eaadc07a0a0fcf8a130.zip
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
Diffstat (limited to 'gnuradio-core/src/lib/general')
-rw-r--r--gnuradio-core/src/lib/general/gr_repeat.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-core/src/lib/general/gr_repeat.cc b/gnuradio-core/src/lib/general/gr_repeat.cc
index aa1e17701..70bb44e5a 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;