]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
fixes to make cppcheck happier
authorc vw <dl1ycf@darc.de>
Wed, 15 Jan 2020 17:10:22 +0000 (18:10 +0100)
committerc vw <dl1ycf@darc.de>
Wed, 15 Jan 2020 17:10:22 +0000 (18:10 +0100)
rigctl.c
stemlab_discovery.c

index 847752454e174b8b4cd4b1d3b4ef6c15ab03faea..d452ca5f935f95d978b571942361caa16c0c4619 100644 (file)
--- 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
index fdaa988bb3fa870fb42d3f1dc931553f5b707743..8b90aaca4d1db148d5c3ed5d563430712f2458a9 100644 (file)
@@ -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);