From 2abdebfb2af087da19f832c9ff2d8f8b19aed9ea Mon Sep 17 00:00:00 2001 From: Jared Boone Date: Sun, 15 Jun 2014 10:17:49 -0700 Subject: [PATCH] Add parentheses to silence ambiguous expression warning. --- firmware/common/tuning.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/common/tuning.c b/firmware/common/tuning.c index 050a0602..921c1916 100644 --- a/firmware/common/tuning.c +++ b/firmware/common/tuning.c @@ -114,7 +114,7 @@ bool set_freq_explicit(const uint64_t if_freq_hz, const uint64_t lo_freq_hz, } if ((path != RF_PATH_FILTER_BYPASS) && - (lo_freq_hz < MIN_LO_FREQ_HZ) || (lo_freq_hz > MAX_LO_FREQ_HZ)) { + ((lo_freq_hz < MIN_LO_FREQ_HZ) || (lo_freq_hz > MAX_LO_FREQ_HZ))) { return false; }