Initialize Spectrum FIFO pointer to nullptr.

This commit is contained in:
Jared Boone 2016-01-30 22:23:22 -08:00
parent faf0fd6b91
commit f134e63f05

View File

@ -84,7 +84,7 @@ public:
private:
WaterfallView waterfall_view;
FrequencyScale frequency_scale;
ChannelSpectrumFIFO* fifo;
ChannelSpectrumFIFO* fifo { nullptr };
void on_channel_spectrum(const ChannelSpectrum& spectrum);
};