Fix old_vfo could be uninitialized warnings that are generated in minGW by initializing to RIG_VFO_A in get/set_chan().

Adding here to keep in synch with latent changes to the add_drake_r8 branch.
pull/1807/head
Mark J. Fine 2025-07-20 14:57:27 -04:00
rodzic 482c0f1111
commit bf63febf08
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -1045,7 +1045,7 @@ int drake_set_chan(RIG *rig, vfo_t vfo, const channel_t *chan)
char mdbuf[16];
char ackbuf[BUFSZ];
int ack_len;
vfo_t old_vfo;
vfo_t old_vfo = RIG_VFO_A;
int old_chan;
int retval;
value_t dummy;
@ -1122,7 +1122,7 @@ int drake_set_chan(RIG *rig, vfo_t vfo, const channel_t *chan)
*/
int drake_get_chan(RIG *rig, vfo_t vfo, channel_t *chan, int read_only)
{
vfo_t old_vfo;
vfo_t old_vfo = RIG_VFO_A;
int old_chan;
int retval;
const struct drake_priv_data *priv = STATE(rig)->priv;