mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-22 08:04:49 -05:00
Fix gcc warning
This commit is contained in:
parent
80fe6cb096
commit
14710596be
@ -174,7 +174,7 @@ bool WavFileRecord::handleMessage(const Message& message)
|
||||
DSPSignalNotification& notif = (DSPSignalNotification&) message;
|
||||
|
||||
int sampleRate = notif.getSampleRate();
|
||||
if ((sampleRate != m_sampleRate) && m_recordOn) {
|
||||
if ((sampleRate != (int)m_sampleRate) && m_recordOn) {
|
||||
qDebug() << "WavFileRecord::handleMessage: sample rate has changed. Creating a new .wav file";
|
||||
stopRecording();
|
||||
m_recordOn = true;
|
||||
|
Loading…
Reference in New Issue
Block a user