From: Johannes Demel Date: Sat, 2 Oct 2021 09:38:46 +0000 (+0200) Subject: [PATCH 56/73] format: Fix code format X-Git-Tag: archive/raspbian/2.5.0-2+rpi1^2~6 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=e8686383311d0933d7797df4b4014ac3b51fb17f;p=volk.git [PATCH 56/73] format: Fix code format I was too quick to merge a PR and missed a formatting issue. Thus, I fix it now. Signed-off-by: Johannes Demel Gbp-Pq: Name 0056-format-Fix-code-format.patch --- diff --git a/lib/volk_malloc.c b/lib/volk_malloc.c index f489ef8..0410d29 100644 --- a/lib/volk_malloc.c +++ b/lib/volk_malloc.c @@ -56,8 +56,8 @@ void* volk_malloc(size_t size, size_t alignment) } // 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); }