1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-01 16:19:43 +02:00

fixed a signed vs. unsigned warning in LadspaEffect.cpp

This commit is contained in:
andheh 2018-02-15 16:00:01 +01:00 committed by James Crook
parent c8e42fce25
commit 6a85577389

View File

@ -192,7 +192,7 @@ bool LadspaEffectsModule::AutoRegisterPlugins(PluginManagerInterface & pm)
wxArrayString files;
wxString ignoredErrMsg;
for (int i = 0; i < WXSIZEOF(kShippedEffects); i++)
for (int i = 0; i < (int)WXSIZEOF(kShippedEffects); i++)
{
files.Clear();
pm.FindFilesInPathList(kShippedEffects[i], pathList, files);