From 9ee0c057ad2c74406a98a7bb71f39e2dacc4a4fd Mon Sep 17 00:00:00 2001 From: CRD716 Date: Thu, 27 Oct 2022 22:44:41 -0500 Subject: [PATCH] another one --- sdrbase/dsp/wavfilerecord.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdrbase/dsp/wavfilerecord.cpp b/sdrbase/dsp/wavfilerecord.cpp index 099377714..d2737e29f 100644 --- a/sdrbase/dsp/wavfilerecord.cpp +++ b/sdrbase/dsp/wavfilerecord.cpp @@ -133,7 +133,7 @@ bool WavFileRecord::startRecording() m_sampleFile.open(m_currentFileName.toStdString().c_str(), std::ios::binary); if (!m_sampleFile.is_open()) { - qWarning() << "WavFileRecord::startRecording: failed to open file: " << m_curentFileName; + qWarning() << "WavFileRecord::startRecording: failed to open file: " << m_currentFileName; return false; } m_recordOn = true; @@ -161,7 +161,7 @@ bool WavFileRecord::stopRecording() m_recordStart = false; if (m_sampleFile.bad()) { - qWarning() << "WavFileRecord::stopRecording: an error occurred while writing to " << m_curentFileName; + qWarning() << "WavFileRecord::stopRecording: an error occurred while writing to " << m_currentFileName; return false; } }