mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-23 01:55:48 -05:00
plutosdr device: fix warning
warning: format specifies type 'long' but the argument has type 'int64_t' (aka 'long long') [-Wformat]
This commit is contained in:
parent
770be1ddfb
commit
9b1c24ee3d
@ -658,8 +658,8 @@ void DevicePlutoSDRBox::getXO()
|
||||
get_param(DEVICE_PHY, "xo_correction", valueStr);
|
||||
try
|
||||
{
|
||||
m_xoInitial = boost::lexical_cast<int64_t>(valueStr);
|
||||
qDebug("DevicePlutoSDRBox::getXO: %ld", m_xoInitial);
|
||||
m_xoInitial = boost::lexical_cast<quint64>(valueStr);
|
||||
qDebug("DevicePlutoSDRBox::getXO: %llu", m_xoInitial);
|
||||
}
|
||||
catch (const boost::bad_lexical_cast &e)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user