13
0

Fix sloppy typing

This commit is contained in:
Robin Gareus 2020-09-28 03:41:48 +02:00
parent 117184c3bd
commit ff26258461
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04

View File

@ -381,7 +381,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;