merge-requests/5/merge 1.2b
Roeland Jansen 2021-09-07 09:01:55 +02:00
rodzic b37713124b
commit f7524c7fba
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -465,7 +465,7 @@ void rigCtlClient::socketReadyRead()
}
response.append(resp);
}
else if (command.length() > 1 && command[0] == "I" || command[0] == "set_split_freq")
else if (command.length() > 1 && (command[0] == "I" || command[0] == "set_split_freq"))
{
setCommand = true;
freqt freq;
@ -1395,4 +1395,4 @@ int rigCtlClient::getCalibratedValue(unsigned char meter,cal_table_t cal) {
/ (cal.table[i].raw - cal.table[i - 1].raw);
return cal.table[i].val - interp;
}
}