1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2026-06-04 15:04:38 -04:00

activated compiler warnings

This commit is contained in:
f4exb
2017-05-25 20:13:34 +02:00
parent d6f62a69dd
commit 3a3d8e3dcb
157 changed files with 655 additions and 772 deletions
@@ -34,9 +34,9 @@ FileSinkThread::FileSinkThread(std::ofstream *samplesStream, SampleSourceFifo* s
m_samplerate(0),
m_log2Interpolation(0),
m_throttlems(FILESINK_THROTTLE_MS),
m_maxThrottlems(50),
m_throttleToggle(false),
m_buf(0),
m_maxThrottlems(50)
m_buf(0)
{
assert(m_ofstream != 0);
}
@@ -147,8 +147,6 @@ void FileSinkThread::setLog2Interpolation(int log2Interpolation)
void FileSinkThread::run()
{
int res;
m_running = true;
m_startWaiter.wakeAll();