From d8b1f5eef2b8585976ed5358634f2fca05f3573e Mon Sep 17 00:00:00 2001 From: c vw Date: Wed, 15 Jan 2020 18:10:22 +0100 Subject: [PATCH] fixes to make cppcheck happier --- rigctl.c | 8 +------- stemlab_discovery.c | 16 ++++++---------- 2 files changed, 7 insertions(+), 17 deletions(-) diff --git a/rigctl.c b/rigctl.c index 8477524..d452ca5 100644 --- a/rigctl.c +++ b/rigctl.c @@ -612,13 +612,6 @@ static gpointer rigctl_cw_thread(gpointer data) return NULL; } -void gui_vfo_move_to(gpointer data) { - long long freq = *(long long *) data; - fprintf(stderr,"GUI: %11lld\n",freq); - return; - //vfo_move_to(freq); -} - // This looks up the frequency of the Active receiver with // protection for 1 versus 2 receivers long long rigctl_getFrequency() { @@ -2002,6 +1995,7 @@ void parse_cmd ( char * cmd_input,int len,int client_sock) { #endif send_resp(client_sock,msg); } else { + int f; // Try to set filters here! // CW - legal values 50 80 100 150 200 300 400 500 600 1000 2000 // Pi HPSDR map 50 100 100 100 250 250 400 500 600 1000 diff --git a/stemlab_discovery.c b/stemlab_discovery.c index fdaa988..8b90aac 100644 --- a/stemlab_discovery.c +++ b/stemlab_discovery.c @@ -514,13 +514,9 @@ void stemlab_discovery(void) { void stemlab_discovery() { - size_t len; char txt[150]; CURL *curl_handle; CURLcode curl_error; - FILE *fpin; - char *p; - int i; int app_list; struct sockaddr_in ip_address; struct sockaddr_in netmask; @@ -548,9 +544,9 @@ void stemlab_discovery() { } app_list=0; sprintf(txt,"http://%s",ipaddr_tcp); - curl_error = curl_easy_setopt(curl_handle, CURLOPT_URL, txt); - curl_error = curl_easy_setopt(curl_handle, CURLOPT_TIMEOUT, (long) 5); - curl_error = curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, get_list_cb); + curl_easy_setopt(curl_handle, CURLOPT_URL, txt); + curl_easy_setopt(curl_handle, CURLOPT_TIMEOUT, (long) 5); + curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, get_list_cb); curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, &app_list); curl_error = curl_easy_perform(curl_handle); curl_easy_cleanup(curl_handle); @@ -574,9 +570,9 @@ void stemlab_discovery() { return; } sprintf(txt,"http://%s/bazaar?apps=", ipaddr_tcp); - curl_error = curl_easy_setopt(curl_handle, CURLOPT_URL, txt); - curl_error = curl_easy_setopt(curl_handle, CURLOPT_TIMEOUT, (long) 20); - curl_error = curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, app_list_cb); + curl_easy_setopt(curl_handle, CURLOPT_URL, txt); + curl_easy_setopt(curl_handle, CURLOPT_TIMEOUT, (long) 20); + curl_easy_setopt(curl_handle, CURLOPT_WRITEFUNCTION, app_list_cb); curl_easy_setopt(curl_handle, CURLOPT_WRITEDATA, &app_list); curl_error = curl_easy_perform(curl_handle); curl_easy_cleanup(curl_handle); -- 2.45.2