Skip to content

Commit

Permalink
Merge pull request gnuradio#524 from jdemel/fix-format-error
Browse files Browse the repository at this point in the history
format: Fix code format
  • Loading branch information
jdemel authored Oct 2, 2021
2 parents 8867620 + a307c97 commit 854ef73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/volk_malloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 854ef73

Please sign in to comment.