Fix typo for ARM MIDI ringbuffer alignment

This commit is contained in:
Robin Gareus 2022-06-07 23:33:39 +02:00
parent e5c19994c9
commit b8c3f9342a
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -383,7 +383,7 @@ RTMidiBuffer::alloc_blob (uint32_t size)
}
uint32_t offset = _pool_size;
#if defined(__arm__) || defined(__aarch64_)
#if defined(__arm__) || defined(__aarch64__)
_pool_size += ((size - 1) | 3) + 1;
#else
_pool_size += size;