I was too quick to merge a PR and missed a formatting issue. Thus, I fix
it now.
Signed-off-by: Johannes Demel <demel@uni-bremen.de>
Gbp-Pq: Name 0056-format-Fix-code-format.patch
}
// Tweak size to satisfy ASAN (the GCC address sanitizer).
// Calling 'volk_malloc' might therefor result in the allocation of more memory than
- // requested for correct alignment. Any allocation size change here will in general not
- // impact the end result since initial size alignment is required either way.
+ // requested for correct alignment. Any allocation size change here will in general
+ // not impact the end result since initial size alignment is required either way.
if (size % alignment) {
size += alignment - (size % alignment);
}