aboutsummaryrefslogtreecommitdiffstats
path: root/lib/soapy/soapy_source_c.cc
diff options
context:
space:
mode:
Diffstat (limited to 'lib/soapy/soapy_source_c.cc')
-rw-r--r--lib/soapy/soapy_source_c.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/soapy/soapy_source_c.cc b/lib/soapy/soapy_source_c.cc
index c780966..a645361 100644
--- a/lib/soapy/soapy_source_c.cc
+++ b/lib/soapy/soapy_source_c.cc
@@ -176,7 +176,7 @@ double soapy_source_c::set_freq_corr( double ppm, size_t chan )
_device->setFrequencyCorrection(SOAPY_SDR_RX, chan, ppm);
#else
std::vector<std::string> components = _device->listFrequencies(SOAPY_SDR_RX, chan);
- if (std::find(components.begin(), components.end(), "COOR") != components.end())
+ if (std::find(components.begin(), components.end(), "CORR") != components.end())
{
_device->setFrequency(SOAPY_SDR_RX, chan, "CORR", ppm);
}
@@ -190,7 +190,7 @@ double soapy_source_c::get_freq_corr( size_t chan )
return _device->getFrequencyCorrection(SOAPY_SDR_RX, chan);
#else
std::vector<std::string> components = _device->listFrequencies(SOAPY_SDR_RX, chan);
- if (std::find(components.begin(), components.end(), "COOR") != components.end())
+ if (std::find(components.begin(), components.end(), "CORR") != components.end())
{
return _device->getFrequency(SOAPY_SDR_RX, chan, "CORR");
}