Skip to content

Commit

Permalink
Fix building with DISABLE_DYNAMIC_LOADING_LAME
Browse files Browse the repository at this point in the history
The semicolon here is strictly required.
  • Loading branch information
iv-m authored and crsib committed Nov 6, 2023
1 parent 70956f7 commit 0fd24d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/mod-mp3/ExportMP3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1689,7 +1689,7 @@ bool MP3ExportProcessor::Initialize(AudacityProject& project,
if (!exporter.InitLibrary(wxT(""))) {
gPrefs->Write(wxT("/MP3/MP3LibPath"), wxString(wxT("")));
gPrefs->Flush();
throw ExportException(_("Could not initialize MP3 encoding library!"))
throw ExportException(_("Could not initialize MP3 encoding library!"));
}
#else
if (!exporter.LoadLibrary(parent, MP3Exporter::Maybe)) {
Expand Down

0 comments on commit 0fd24d2

Please sign in to comment.