Fix typos in messages

pull/1631/head
Daniele Forsi IU5HKX 2024-11-24 18:09:35 +01:00
rodzic 6036a65d2e
commit 6adfce0305
4 zmienionych plików z 7 dodań i 7 usunięć

Wyświetl plik

@ -1013,7 +1013,7 @@ static int dummy_set_split_freq(RIG *rig, vfo_t vfo, freq_t tx_freq)
|| priv->tx_vfo == RIG_VFO_CURR)
{
rig_debug(RIG_DEBUG_WARN,
"%s: split not enabled, but set_split_freq() called? ignorning\n", __func__);
"%s: split not enabled, but set_split_freq() called? ignoring\n", __func__);
RETURNFUNC(RIG_OK);
}
@ -1037,7 +1037,7 @@ static int dummy_get_split_freq(RIG *rig, vfo_t vfo, freq_t *tx_freq)
|| priv->tx_vfo == RIG_VFO_CURR)
{
rig_debug(RIG_DEBUG_WARN,
"%s: split not enabled, but get_split_freq() called? ignorning\n", __func__);
"%s: split not enabled, but get_split_freq() called? ignoring\n", __func__);
RETURNFUNC(RIG_OK);
}
@ -1062,7 +1062,7 @@ static int dummy_set_split_mode(RIG *rig, vfo_t vfo, rmode_t tx_mode,
|| priv->tx_vfo == RIG_VFO_CURR)
{
rig_debug(RIG_DEBUG_WARN,
"%s: split not enabled, but set_split_mode() called? ignorning\n", __func__);
"%s: split not enabled, but set_split_mode() called? ignoring\n", __func__);
RETURNFUNC(RIG_OK);
}
@ -1092,7 +1092,7 @@ static int dummy_get_split_mode(RIG *rig, vfo_t vfo, rmode_t *tx_mode,
|| priv->tx_vfo == RIG_VFO_CURR)
{
rig_debug(RIG_DEBUG_WARN,
"%s: split not enabled, but get_split_mode() called? ignorning\n", __func__);
"%s: split not enabled, but get_split_mode() called? ignoring\n", __func__);
RETURNFUNC(RIG_OK);
}

Wyświetl plik

@ -2627,7 +2627,7 @@ int icom_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width)
if (width > 3)
{
rig_debug(RIG_DEBUG_WARN,
"%s: IC7300 width set by 1,2,3 - adjustable widht not implemented yet\n",
"%s: IC7300 width set by 1,2,3 - adjustable width not implemented yet\n",
__func__);
}
}

Wyświetl plik

@ -652,7 +652,7 @@ int elecraft_get_vfo_tq(RIG *rig, vfo_t *vfo)
if (sscanf(splitbuf, "TQ%1d", &tq) != 1)
{
rig_debug(RIG_DEBUG_ERR, "%s: unable to parse TQ or TQX reponse of '%s'\n",
rig_debug(RIG_DEBUG_ERR, "%s: unable to parse TQ or TQX response of '%s'\n",
__func__, splitbuf);
}

Wyświetl plik

@ -153,7 +153,7 @@ int main(int argc, const char *argv[])
if (freq != 29620000)
{
printf("rig_set_freq: error exptect %.0f got %.0f\n", 296290000.0, freq);
printf("rig_set_freq: error expect %.0f got %.0f\n", 296290000.0, freq);
}
if (rmode != RIG_MODE_FM || width != rig_passband_narrow(my_rig, RIG_MODE_FM))