From 551d1f8fc14d0b73151483cd8207f4d932b306a0 Mon Sep 17 00:00:00 2001 From: c vw Date: Mon, 18 Nov 2019 16:46:25 +0100 Subject: [PATCH] small fix for VOXLEVEL cat command --- rigctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rigctl.c b/rigctl.c index 507518b..f92f7f0 100644 --- a/rigctl.c +++ b/rigctl.c @@ -3720,7 +3720,7 @@ void parse_cmd ( char * cmd_input,int len,int client_sock) { if((work_int >=0) && (work_int<=9)) { if(zzid_flag == 0) { // Set the threshold here - vox_threshold = ((double) work_int)/100.0; + vox_threshold = ((double) work_int)/10.0; #ifdef RIGCTL_DEBUG fprintf(stderr,"RIGCTL: Vox thresh=%0.20f\n",vox_threshold); #endif -- 2.45.2