projects
/
pihpsdr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
fb36918
)
strtol instead of atoi
author
Ramakrishnan Muthukrishnan
<ram@rkrishnan.org>
Wed, 12 Jan 2022 06:57:18 +0000
(12:27 +0530)
committer
Ramakrishnan Muthukrishnan
<ram@rkrishnan.org>
Wed, 12 Jan 2022 06:57:18 +0000
(12:27 +0530)
rigctl.c
patch
|
blob
|
history
diff --git
a/rigctl.c
b/rigctl.c
index b09a49756b0ba8cc9e2308f0026daeaccbb1dc0e..c2b78127daf87e93bcc228967cd4d2b30899b8ea 100644
(file)
--- a/
rigctl.c
+++ b/
rigctl.c
@@
-1824,8
+1824,8
@@
gboolean parse_extended_cmd(char *command, CLIENT *client) {
send_resp(client->fd, reply);
} else if (command[7] == ';') {
command[7] = '\0';
- double gain = (double)
atoi(&command[4]
);
- gain = (
((gain / 100.0) * 62.0) - 12.0)
;
+ double gain = (double)
strtol(&command[4], NULL, 10
);
+ gain = (
gain * 62.0 / 100.0) - 12.0
;
set_mic_gain(gain);
}
break;