1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2025-02-03 09:44:01 -05:00

Fix gcc warnings

This commit is contained in:
Jon Beniston 2023-03-03 16:54:09 +00:00
parent bc29c5105d
commit 3ca1d1cb11
2 changed files with 2 additions and 2 deletions

View File

@ -41,12 +41,12 @@ RttyDemodSink::RttyDemodSink(RttyDemod *packetDemod) :
m_prods1(nullptr),
m_prods2(nullptr),
m_exp(nullptr),
m_sampleIdx(0),
m_clockHistogram(100),
m_shiftEstMag(m_fftSize),
m_fftSequence(-1),
m_fft(nullptr),
m_fftCounter(0),
m_sampleIdx(0),
m_sampleBufferIndex(0)
{
m_magsq = 0.0;

View File

@ -139,7 +139,7 @@ private:
BaudotDecoder m_rttyDecoder;
// For baud rate estimation
int m_cycleCount;
unsigned int m_cycleCount;
std::vector<int> m_clockHistogram;
int m_edgeCount;
MovingAverageUtil<Real, Real, 5> m_baudRateAverage;