mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-27 15:08:39 +01:00
fixed an "used uninitialized" warning in VampEffect.cpp
This commit is contained in:
@@ -274,7 +274,7 @@ bool VampEffect::SetAutomationParameters(CommandParameters & parms)
|
||||
!mParameters[p].valueNames.empty())
|
||||
{
|
||||
wxArrayString choices;
|
||||
int val;
|
||||
int val = 0;
|
||||
|
||||
for (size_t i = 0, cnt = mParameters[p].valueNames.size(); i < cnt; i++)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user