mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-01 08:09:41 +02:00
fixed a signed vs. unsigned warning in LadspaEffect.cpp
This commit is contained in:
parent
c8e42fce25
commit
6a85577389
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user