From: DL1YCF <dl1ycf@darc.de>
Date: Sat, 10 Oct 2020 16:35:53 +0000 (+0200)
Subject: fixed compiler warning (nothing returned in non-void function)
X-Git-Url: https://git.rkrishnan.org/pf/components/flags/-?a=commitdiff_plain;h=1be5119b6e91c328774218e30a94b47423053c61;p=pihpsdr.git

fixed compiler warning (nothing returned in non-void function)
---

diff --git a/rigctl.c b/rigctl.c
index 46c5ac5..c2098bd 100644
--- a/rigctl.c
+++ b/rigctl.c
@@ -3928,6 +3928,7 @@ static gpointer serial_server(gpointer data) {
      }
      close(client->fd);
      cat_control--;
+     return NULL;
 }
 
 int launch_serial () {