1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-02 22:14:45 -04:00

Fix gcc warnings and remove debug

This commit is contained in:
srcejon
2023-11-22 15:12:25 +00:00
parent 25016b5b50
commit 4418fe936a
2 changed files with 4 additions and 5 deletions
@@ -115,10 +115,8 @@ void RTLSDRThread::callbackIQ(const quint8* inBuf, qint32 len)
// Choose between live data or replayed data
if (replayEnabled && m_replayBuffer->useReplay()) {
len = m_replayBuffer->read(remaining, buf);
qDebug() << "Replay";
} else {
len = remaining;
qDebug() << "Live" << m_replayBuffer->useReplay();
}
remaining -= len;