aboutsummaryrefslogtreecommitdiffstats
path: root/op25/gr-op25_repeater/lib/check_frame_sync.h
diff options
context:
space:
mode:
Diffstat (limited to 'op25/gr-op25_repeater/lib/check_frame_sync.h')
-rw-r--r--op25/gr-op25_repeater/lib/check_frame_sync.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/op25/gr-op25_repeater/lib/check_frame_sync.h b/op25/gr-op25_repeater/lib/check_frame_sync.h
index d361f19..bf2498c 100644
--- a/op25/gr-op25_repeater/lib/check_frame_sync.h
+++ b/op25/gr-op25_repeater/lib/check_frame_sync.h
@@ -6,7 +6,7 @@
static inline bool check_frame_sync(uint64_t x, int err_threshold, int len) {
int errs=0;
- static const uint64_t mask = (1LL<<len)-1;
+ const uint64_t mask = (1LL<<len)-1LL;
x = x & mask;
// source: https://en.wikipedia.org/wiki/Hamming_weight
static const uint64_t m1 = 0x5555555555555555; //binary: 0101...