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
@@ -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)