From ddbf13bbf925db9f05a9125e9edd22479e13728f Mon Sep 17 00:00:00 2001 From: Ramakrishnan Muthukrishnan Date: Fri, 14 Jan 2022 14:41:35 +0530 Subject: [PATCH] remove an extra parenthesis --- rigctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rigctl.c b/rigctl.c index a569dba..b386874 100644 --- a/rigctl.c +++ b/rigctl.c @@ -3463,7 +3463,7 @@ int parse_cmd(void *data) { if (command[2] == ';') { double att = 0.0; if (have_rx_gain) { - att = adc[active_receiver->adc].attenuation + 12.0); + att = adc[active_receiver->adc].attenuation + 12.0; att = round((att * 99.0) / 60.0); } else { att = adc[active_receiver->adc].attenuation; -- 2.45.2