1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-05-31 14:22:26 -04:00

Fixed some compiler warnings

This commit is contained in:
f4exb 2019-04-21 00:13:14 +02:00
parent fbd875003a
commit fbb29ba9cd
2 changed files with 2 additions and 2 deletions

View File

@ -659,7 +659,7 @@ void DevicePlutoSDRBox::getXO()
try try
{ {
m_xoInitial = boost::lexical_cast<quint64>(valueStr); m_xoInitial = boost::lexical_cast<quint64>(valueStr);
qDebug("DevicePlutoSDRBox::getXO: %llu", m_xoInitial); qDebug("DevicePlutoSDRBox::getXO: %ld", m_xoInitial);
} }
catch (const boost::bad_lexical_cast &e) catch (const boost::bad_lexical_cast &e)
{ {

View File

@ -50,7 +50,7 @@ BladeRF2OutputGui::BladeRF2OutputGui(DeviceUISet *deviceUISet, QWidget* parent)
ui->setupUi(this); ui->setupUi(this);
m_sampleSink->getFrequencyRange(f_min, f_max, step); m_sampleSink->getFrequencyRange(f_min, f_max, step);
qDebug("BladeRF2OutputGui::BladeRF2OutputGui: getFrequencyRange: [%llu,%llu] step: %d", f_min, f_max, step); qDebug("BladeRF2OutputGui::BladeRF2OutputGui: getFrequencyRange: [%lu,%lu] step: %d", f_min, f_max, step);
ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold)); ui->centerFrequency->setColorMapper(ColorMapper(ColorMapper::GrayGold));
ui->centerFrequency->setValueRange(7, f_min/1000, f_max/1000); ui->centerFrequency->setValueRange(7, f_min/1000, f_max/1000);