From: Ramakrishnan Muthukrishnan Date: Fri, 14 Jan 2022 10:24:49 +0000 (+0530) Subject: round the value after all the calculation X-Git-Url: https://git.rkrishnan.org/pf/content/en/seg/(%5B%5E?a=commitdiff_plain;h=a1a8ea2089d058e9b79760308992ad0da5d8ad38;p=pihpsdr.git round the value after all the calculation --- diff --git a/rigctl.c b/rigctl.c index 4f3fbb4..67e7cf2 100644 --- a/rigctl.c +++ b/rigctl.c @@ -3480,7 +3480,7 @@ int parse_cmd(void *data) { printf("setting attn level [0..99]: %d\n", attI); if (have_rx_gain) { - att = round((attI * 60.0) / 99.0) - 12.0; + att = round(((attI * 60.0) / 99.0) - 12.0); } else { att = (attI * 31.0) / 99.0; }