1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-11-25 17:28:50 -05:00

SDRdaemon: fixed SDRdaemonBuffer returned value for read meta

This commit is contained in:
f4exb 2016-02-17 08:40:10 +01:00
parent 8dc05cf578
commit 8d986368bd

View File

@ -121,9 +121,13 @@ bool SDRdaemonBuffer::readMeta(char *array, uint32_t length)
{
m_sync = false;
}
}
return m_sync;
}
else
{
return false;
}
}
void SDRdaemonBuffer::writeData(char *array, uint32_t length)