summaryrefslogtreecommitdiff
path: root/gr-pager
diff options
context:
space:
mode:
authorTom Rondeau2012-12-03 22:53:16 -0500
committerTom Rondeau2012-12-03 22:55:10 -0500
commitef74b48c155bfcec2f560c9a4a23592814699eda (patch)
tree66e4c56edc08158052807037809f094db000f916 /gr-pager
parent197aa3c917c8750729e20ead831bb3a3dbce322e (diff)
downloadgnuradio-ef74b48c155bfcec2f560c9a4a23592814699eda.tar.gz
gnuradio-ef74b48c155bfcec2f560c9a4a23592814699eda.tar.bz2
gnuradio-ef74b48c155bfcec2f560c9a4a23592814699eda.zip
build: cleaned up some warnings.
Diffstat (limited to 'gr-pager')
-rw-r--r--gr-pager/lib/pager_flex_parse.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/gr-pager/lib/pager_flex_parse.cc b/gr-pager/lib/pager_flex_parse.cc
index 9418c4461..d7c308ddb 100644
--- a/gr-pager/lib/pager_flex_parse.cc
+++ b/gr-pager/lib/pager_flex_parse.cc
@@ -156,16 +156,16 @@ void pager_flex_parse::parse_data()
void pager_flex_parse::parse_alphanumeric(int mw1, int mw2, int j)
{
int frag;
- bool cont;
+ //bool cont;
if (!d_laddr) {
frag = (d_datawords[mw1] >> 11) & 0x03;
- cont = (d_datawords[mw1] >> 10) & 0x01;
+ //cont = (d_datawords[mw1] >> 10) & 0x01;
mw1++;
}
else {
frag = (d_datawords[j+1] >> 11) & 0x03;
- cont = (d_datawords[j+1] >> 10) & 0x01;
+ //cont = (d_datawords[j+1] >> 10) & 0x01;
mw2--;
}