From: Ramakrishnan Muthukrishnan Date: Fri, 14 Jan 2022 09:11:35 +0000 (+0530) Subject: remove an extra parenthesis X-Git-Url: https://git.rkrishnan.org/Site/Content/simplejson/status?a=commitdiff_plain;h=ddbf13bbf925db9f05a9125e9edd22479e13728f;p=pihpsdr.git remove an extra parenthesis --- 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;