1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-20 14:20:06 +02:00

Failed open of block file gives correct error message

This commit is contained in:
Paul Licameli 2019-02-13 14:13:52 -05:00
parent 1d40f33eba
commit 4ba373f2d9

View File

@ -414,7 +414,7 @@ void ODPCMAliasBlockFile::WriteSummary()
wxPrintf("Unable to write summary data to file: %s", fileNameChar.get());
throw FileException{
FileException::Cause::Read, wxFileName{ fileNameChar.get() } };
FileException::Cause::Open, wxFileName{ fileNameChar.get() } };
}
ArrayOf<char> cleanup;