Skip to content

Commit

Permalink
Add carriage return to error message
Browse files Browse the repository at this point in the history
Signed-off-by: Clayton Smith <[email protected]>
  • Loading branch information
argilo committed Oct 22, 2023
1 parent 7595745 commit a279d23
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/volk_malloc.c
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
void* volk_malloc(size_t size, size_t alignment)
{
if ((size == 0) || (alignment == 0)) {
fprintf(stderr, "VOLK: Error allocating memory: either size or alignment is 0");
fprintf(stderr, "VOLK: Error allocating memory: either size or alignment is 0\n");
return NULL;
}
// Tweak size to satisfy ASAN (the GCC address sanitizer).
Expand Down

0 comments on commit a279d23

Please sign in to comment.