Balance RETURNFUNC

pull/969/head
Mike Black W9MDB 2022-02-19 16:32:09 -06:00
rodzic dabf1f2c61
commit 523a22359a
3 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -901,7 +901,7 @@ static int ft1000mp_get_freq(RIG *rig, vfo_t vfo, freq_t *freq)
freq_t f;
int retval;
rig_debug(RIG_DEBUG_VERBOSE, "%s: called\n", __func__);
ENTERFUNC;
if (vfo == RIG_VFO_CURR)
{

Wyświetl plik

@ -1105,11 +1105,11 @@ static int ft991_get_dcs_sql(RIG *rig, vfo_t vfo, tone_t *code)
static int ft991_set_vfo(RIG *rig, vfo_t vfo)
{
rig->state.current_vfo = vfo;
RETURNFUNC(RIG_OK);
RETURNFUNC2(RIG_OK);
}
static int ft991_get_vfo(RIG *rig, vfo_t *vfo)
{
*vfo = rig->state.current_vfo;
RETURNFUNC(RIG_OK);
RETURNFUNC2(RIG_OK);
}

Wyświetl plik

@ -10718,7 +10718,7 @@ int newcat_send_voice_mem(RIG *rig, vfo_t vfo, int ch)
// we don't do any channel checking -- varies by rig -- could do it but not critical
SNPRINTF(priv->cmd_str, sizeof(priv->cmd_str), "PB%s%d%c", p1, ch, cat_term);
RETURNFUNC(newcat_set_cmd(rig));
RETURNFUNC2(newcat_set_cmd(rig));
}
static int newcat_set_apf_frequency(RIG *rig, vfo_t vfo, int freq)