mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
fix type warning
This commit is contained in:
parent
987c1cb94a
commit
5c1efd864c
1 changed files with 2 additions and 2 deletions
|
|
@ -409,8 +409,8 @@ BufferSet::VSTBuffer::push_back (Evoral::Event<framepos_t> const & ev)
|
|||
*/
|
||||
return;
|
||||
}
|
||||
int const n = _events->numEvents;
|
||||
assert (n < (int) _capacity);
|
||||
uint32_t const n = _events->numEvents;
|
||||
assert (n < _capacity);
|
||||
if (n >= _capacity) {
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue