mirror of
https://github.com/f4exb/sdrangel.git
synced 2025-09-03 21:57:51 -04:00
missed typo
This commit is contained in:
parent
7254d5b638
commit
ad705db1f7
@ -121,7 +121,7 @@ bool FileRecord::startRecording()
|
|||||||
m_sampleFile.open(m_currentFileName.toStdString().c_str(), std::ios::binary);
|
m_sampleFile.open(m_currentFileName.toStdString().c_str(), std::ios::binary);
|
||||||
if (!m_sampleFile.is_open())
|
if (!m_sampleFile.is_open())
|
||||||
{
|
{
|
||||||
qWarning() << "FileRecord::startRecording: failed to open file: " << m_curentFileName;
|
qWarning() << "FileRecord::startRecording: failed to open file: " << m_currentFileName;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
m_recordOn = true;
|
m_recordOn = true;
|
||||||
@ -143,7 +143,7 @@ bool FileRecord::stopRecording()
|
|||||||
m_recordStart = false;
|
m_recordStart = false;
|
||||||
if (m_sampleFile.bad())
|
if (m_sampleFile.bad())
|
||||||
{
|
{
|
||||||
qWarning() << "FileRecord::stopRecording: an error occurred while writing to " << m_curentFileName;
|
qWarning() << "FileRecord::stopRecording: an error occurred while writing to " << m_currentFileName;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user