1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 13:47:01 -04: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
@@ -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)
{