1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-01 21:54:55 -04:00

Fix compiler warnings

This commit is contained in:
Jon Beniston
2020-10-03 09:27:37 +01:00
parent c895363e3b
commit 3e6edfa17f
3 changed files with 4 additions and 4 deletions
@@ -132,7 +132,7 @@ void USRPInputThread::run()
m_packets++;
if (samples_received != DeviceUSRP::blockSize)
{
qDebug("USRPInputThread::run - received %d/%d samples", samples_received, DeviceUSRP::blockSize);
qDebug("USRPInputThread::run - received %ld/%d samples", samples_received, DeviceUSRP::blockSize);
}
if (md.error_code == uhd::rx_metadata_t::ERROR_CODE_TIMEOUT)
{