From a4c5b1b4e7aa4a48f3273cb19ff580e635a5fb23 Mon Sep 17 00:00:00 2001 From: Michael Black Date: Thu, 28 Nov 2019 16:39:26 -0600 Subject: [PATCH] icom.c fix spelling error --- icom/icom.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icom/icom.c b/icom/icom.c index 247d20a42..75565bdda 100644 --- a/icom/icom.c +++ b/icom/icom.c @@ -3208,7 +3208,7 @@ int icom_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t tx_vfo) // if either VFOA or B is the vfo we set to VFOA when split is turned off if (vfo == RIG_VFO_A || vfo == RIG_VFO_B) rig_set_vfo(rig,RIG_VFO_A); // otherwise if Main or Sub we set Main as the current vfo - else if (vfo == RIG_VFO_MAIN || vfo == RIG_VFO_SUB) rig_set_vfo(rig,RIG_VFO_Main); + else if (vfo == RIG_VFO_MAIN || vfo == RIG_VFO_SUB) rig_set_vfo(rig,RIG_VFO_MAIN); split_sc = S_SPLT_OFF; break;