mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-03-23 20:58:42 -04:00
Fix typo that generated a compiler warning
Fixes: warning: label ‘std’ defined but not used [-Wunused-label]
This commit is contained in:
parent
4bc1059a50
commit
9801538bdf
@ -203,7 +203,7 @@ void AMDemodSink::processOneSample(Complex &ci)
|
||||
|
||||
if (m_audioBufferFill >= m_audioBuffer.size())
|
||||
{
|
||||
std:;size_t res = m_audioFifo.write((const quint8*)&m_audioBuffer[0], std::min(m_audioBufferFill, m_audioBuffer.size()));
|
||||
std::size_t res = m_audioFifo.write((const quint8*)&m_audioBuffer[0], std::min(m_audioBufferFill, m_audioBuffer.size()));
|
||||
|
||||
if (res != m_audioBufferFill)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user