This commit is contained in:
Robin Gareus 2023-05-19 05:45:51 +02:00
parent 157ccbbdb5
commit 66c03fea25
No known key found for this signature in database
GPG key ID: A090BCE02CF57F04

View file

@ -219,10 +219,10 @@ RTMidiBuffer::write (TimeType time, Evoral::EventType /*type*/, uint32_t size, c
switch (size) {
case 3:
_data[_size].bytes[3] = buf[2];
/* fallthru */
[[fallthrough]];
case 2:
_data[_size].bytes[2] = buf[1];
/* fallthru */
[[fallthrough]];
case 1:
_data[_size].bytes[1] = buf[0];
break;