summaryrefslogtreecommitdiff
path: root/gr-pager/lib
diff options
context:
space:
mode:
authorTom Rondeau2011-07-26 23:36:53 -0400
committerTom Rondeau2011-07-26 23:36:53 -0400
commit77589906a859cacabd502dbfe93a72889d3fa83c (patch)
treed76560d881b87885d2078f2d204427269995abb4 /gr-pager/lib
parent8cb0981894000e8239ee2425b4e99ded9841604a (diff)
parent8e1f9ce7dde6ba00cdaf6df8f08a602e4a3843b5 (diff)
downloadgnuradio-77589906a859cacabd502dbfe93a72889d3fa83c.tar.gz
gnuradio-77589906a859cacabd502dbfe93a72889d3fa83c.tar.bz2
gnuradio-77589906a859cacabd502dbfe93a72889d3fa83c.zip
Merge branch 'maint'
* maint: doxygen: fixed doxygen warnings. Fixed type warning. Fixed warnings about doxygen format. Fixed return warnings. Fixed warnings about variable intialization order. Conflicts: volk/include/volk/volk_complex.h
Diffstat (limited to 'gr-pager/lib')
-rw-r--r--gr-pager/lib/pager_flex_sync.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-pager/lib/pager_flex_sync.cc b/gr-pager/lib/pager_flex_sync.cc
index 61cf4ad38..30666298f 100644
--- a/gr-pager/lib/pager_flex_sync.cc
+++ b/gr-pager/lib/pager_flex_sync.cc
@@ -274,7 +274,7 @@ int pager_flex_sync::general_work(int noutput_items,
while (i < ninputs && j < noutput_items) {
unsigned char sym = *in++; i++;
- d_index = ++d_index % d_spb;
+ d_index = (d_index+1) % d_spb;
switch (d_state) {
case ST_IDLE: