Explicitely initialize static int verbose

pull/1850/head
Daniele Forsi IU5HKX 2025-08-14 20:30:56 +02:00
rodzic ead67ec170
commit 5a001ab3aa
4 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -119,7 +119,7 @@ static int handle_ts2000(void *arg);
static RIG *my_rig; /* handle to rig */
static hamlib_port_t my_com; /* handle to virtual COM port */
static int verbose;
static int verbose = RIG_DEBUG_NONE;
/* CW Skimmer can only set VFOA */
/* IC7300 for example can run VFOA on FM and VFOB on CW */
/* So -A/--mapa2b changes set_freq on VFOA to VFOB */

Wyświetl plik

@ -135,7 +135,7 @@ static unsigned client_count;
static RIG *my_rig; /* handle to rig (instance) */
static volatile int rig_opened = 0;
static int verbose;
static int verbose = RIG_DEBUG_NONE;
#ifdef HAVE_SIG_ATOMIC_T
static sig_atomic_t volatile ctrl_c = 0;

Wyświetl plik

@ -109,7 +109,7 @@ void usage();
static RIG *my_rig; /* handle to rig */
static RIG
*my_rig_sync; /* rig the gets synchronized -- freq only for now */
static int verbose;
static int verbose = RIG_DEBUG_NONE;
/* CW Skimmer can only set VFOA */
/* IC7300 for example can run VFOA on FM and VFOB on CW */
/* So -A/--mapa2b changes set_freq on VFOA to VFOB */

Wyświetl plik

@ -139,7 +139,7 @@ static unsigned client_count;
static RIG *my_rig; /* handle to rig (instance) */
static volatile int rig_opened = 0;
static int verbose;
static int verbose = RIG_DEBUG_NONE;
#ifdef HAVE_SIG_ATOMIC_T
static sig_atomic_t volatile ctrl_c;