diff options
author | Johnathan Corgan <jcorgan@corganenterprises.com> | 2009-09-23 19:11:36 -0700 |
---|---|---|
committer | Johnathan Corgan <jcorgan@corganenterprises.com> | 2009-09-23 19:11:36 -0700 |
commit | 4bb01619d8a082bcf412762f3ee147e8cd4b37dd (patch) | |
tree | 773750cff2372c31064243a56c72ab7695115076 /gr-noaa | |
parent | d3a651aa194620d83dc61cac23f6887b6e4fd23e (diff) |
Fix missing type specifier for mask
Diffstat (limited to 'gr-noaa')
-rw-r--r-- | gr-noaa/lib/noaa_hrpt_deframer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-noaa/lib/noaa_hrpt_deframer.cc b/gr-noaa/lib/noaa_hrpt_deframer.cc index b0de09c91b..89486aa19d 100644 --- a/gr-noaa/lib/noaa_hrpt_deframer.cc +++ b/gr-noaa/lib/noaa_hrpt_deframer.cc @@ -90,7 +90,7 @@ noaa_hrpt_deframer::general_work(int noutput_items, case ST_IDLE: d_shifter = (d_shifter << 1) | bit; // MSB transmitted first - if ((d_shifter & 0x0FFFFFFFFFFFFFFF) == HRPT_MINOR_FRAME_SYNC) { + if ((d_shifter & 0x0FFFFFFFFFFFFFFFLL) == HRPT_MINOR_FRAME_SYNC) { fprintf(stderr, "SYNC #%i", frames_seen++); out[j++] = SYNC1; out[j++] = SYNC2; |