1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 01:55:48 -05:00

Fix compiler warning

This commit is contained in:
Jon Beniston 2020-10-26 14:50:00 +00:00
parent 2400c4643c
commit b7fac21297
2 changed files with 2 additions and 2 deletions

View File

@ -109,7 +109,7 @@ void USRPOutputThread::run()
m_packets++;
if (samples_sent != m_bufSamples)
{
qDebug("USRPOutputThread::run written %ld/%d samples", samples_sent, m_bufSamples);
qDebug("USRPOutputThread::run written %ld/%ld samples", samples_sent, m_bufSamples);
}
}
catch (std::exception& e)

View File

@ -146,7 +146,7 @@ void USRPInputThread::run()
m_packets++;
if (samples_received != m_bufSamples)
{
qDebug("USRPInputThread::run - received %ld/%d samples", samples_received, m_bufSamples);
qDebug("USRPInputThread::run - received %ld/%ld samples", samples_received, m_bufSamples);
}
if (md.error_code == uhd::rx_metadata_t::ERROR_CODE_TIMEOUT)
{