From 9ad30bf040a47a4f66bc87d2c264416726dc08b7 Mon Sep 17 00:00:00 2001 From: CRD716 Date: Thu, 27 Oct 2022 21:50:19 -0500 Subject: [PATCH] wavfilerecord.cpp typo --- 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 8111615de..099377714 100644 --- a/sdrbase/dsp/wavfilerecord.cpp +++ b/sdrbase/dsp/wavfilerecord.cpp @@ -129,8 +129,8 @@ bool WavFileRecord::startRecording() if (!m_sampleFile.is_open()) { qDebug() << "WavFileRecord::startRecording"; - m_curentFileName = QString("%1.%2.wav").arg(m_fileBase).arg(QDateTime::currentDateTimeUtc().toString("yyyy-MM-ddTHH_mm_ss_zzz")); - m_sampleFile.open(m_curentFileName.toStdString().c_str(), std::ios::binary); + m_currentFileName = QString("%1.%2.wav").arg(m_fileBase).arg(QDateTime::currentDateTimeUtc().toString("yyyy-MM-ddTHH_mm_ss_zzz")); + 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;