1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-04 14:39:08 +02:00

Fix stray ';'

Was breaking build when FLAC disabled.
This commit is contained in:
James Crook 2016-08-27 15:21:57 +01:00
parent b53e9ff418
commit 80f61589a2

View File

@ -61,7 +61,7 @@ void GetFLACImportPlugin(ImportPluginList &importPluginList,
{
unusableImportPluginList.push_back(
make_movable<UnusableImportPlugin>
(DESC, wxArrayString(WXSIZEOF(exts), exts));
(DESC, wxArrayString(WXSIZEOF(exts), exts))
);
}