mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-27 15:08:39 +01:00
fixed a signed vs. unsigned warning in LadspaEffect.cpp
This commit is contained in:
@@ -192,7 +192,7 @@ bool LadspaEffectsModule::AutoRegisterPlugins(PluginManagerInterface & pm)
|
|||||||
wxArrayString files;
|
wxArrayString files;
|
||||||
wxString ignoredErrMsg;
|
wxString ignoredErrMsg;
|
||||||
|
|
||||||
for (int i = 0; i < WXSIZEOF(kShippedEffects); i++)
|
for (int i = 0; i < (int)WXSIZEOF(kShippedEffects); i++)
|
||||||
{
|
{
|
||||||
files.Clear();
|
files.Clear();
|
||||||
pm.FindFilesInPathList(kShippedEffects[i], pathList, files);
|
pm.FindFilesInPathList(kShippedEffects[i], pathList, files);
|
||||||
|
|||||||
Reference in New Issue
Block a user