[PATCH 56/73] format: Fix code format
authorJohannes Demel <demel@uni-bremen.de>
Sat, 2 Oct 2021 09:38:46 +0000 (11:38 +0200)
committerA. Maitland Bottoms <bottoms@debian.org>
Fri, 22 Oct 2021 03:30:05 +0000 (04:30 +0100)
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

lib/volk_malloc.c

index f489ef872d55d2387842f43a0ac4e7eb1924b7a5..0410d29c547282acfb20c1b3defaf0f0f36188a4 100644 (file)
@@ -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);
     }