Fix gcc warning

This commit is contained in:
Jon Beniston 2021-05-21 10:21:45 +01:00
parent 80fe6cb096
commit 14710596be
1 changed files with 1 additions and 1 deletions

View File

@ -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;