mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
triggerbox: fix uninitialized variable
This commit is contained in:
parent
0699449f29
commit
25093af986
1 changed files with 1 additions and 1 deletions
|
|
@ -980,7 +980,7 @@ void
|
|||
TriggerBox::set_next_trigger (size_t current)
|
||||
{
|
||||
size_t n;
|
||||
size_t runnable;
|
||||
size_t runnable = 0;
|
||||
|
||||
for (size_t n = 0; n < all_triggers.size(); ++n) {
|
||||
if (all_triggers[n]->region()) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue