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:
parent
c8e42fce25
commit
6a85577389
@ -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);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user