diff options
author | Tom Rondeau | 2012-12-03 22:53:16 -0500 |
---|---|---|
committer | Tom Rondeau | 2012-12-03 22:55:10 -0500 |
commit | ef74b48c155bfcec2f560c9a4a23592814699eda (patch) | |
tree | 66e4c56edc08158052807037809f094db000f916 /gr-pager | |
parent | 197aa3c917c8750729e20ead831bb3a3dbce322e (diff) | |
download | gnuradio-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.cc | 6 |
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--; } |