mirror of
https://github.com/f4exb/sdrangel.git
synced 2026-06-17 21:28:43 -04:00
Fix gcc warning
This commit is contained in:
@@ -461,7 +461,7 @@ void AntennaToolsGUI::on_dishEfficiency_valueChanged(int value)
|
||||
double AntennaToolsGUI::getDeviceSetFrequencyMHz(int index)
|
||||
{
|
||||
std::vector<DeviceSet*> deviceSets = MainCore::instance()->getDeviceSets();
|
||||
if (index < deviceSets.size())
|
||||
if (index < (int)deviceSets.size())
|
||||
{
|
||||
double frequencyInHz;
|
||||
if (ChannelWebAPIUtils::getCenterFrequency(index, frequencyInHz))
|
||||
|
||||
Reference in New Issue
Block a user