Fixing an operator precedence defect

pull/290/head
Bill Somerville 2020-06-06 02:24:04 +01:00
rodzic c84778b971
commit cc9dfd3b0e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: D864B06D1E81618F
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -4668,7 +4668,7 @@ int icom_set_split_vfo(RIG *rig, vfo_t vfo, split_t split, vfo_t tx_vfo)
}
// This should automaticaly switch between satmode on/off based on the requested split vfo
if (tx_vfo == RIG_VFO_SUB || tx_vfo == RIG_VFO_MAIN && !rig->state.cache.satmode)
if ((tx_vfo == RIG_VFO_SUB || tx_vfo == RIG_VFO_MAIN) && !rig->state.cache.satmode)
{
rig_debug(RIG_DEBUG_VERBOSE, "%s: VFO_SUB and satmode is off so turning on\n",
__func__);