From 56f778b6dd438c139323d3734f914e2a7010be1c Mon Sep 17 00:00:00 2001 From: Paul Floyd Date: Sat, 6 Sep 2025 09:16:17 +0200 Subject: [PATCH] posix_memalign wrapper - remove newline from malloc trace --- coregrind/m_replacemalloc/vg_replace_malloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coregrind/m_replacemalloc/vg_replace_malloc.c b/coregrind/m_replacemalloc/vg_replace_malloc.c index 02134d672..9e0591abf 100644 --- a/coregrind/m_replacemalloc/vg_replace_malloc.c +++ b/coregrind/m_replacemalloc/vg_replace_malloc.c @@ -2188,7 +2188,7 @@ extern int * __error(void) __attribute__((weak)); DO_INIT; \ TRIGGER_MEMCHECK_ERROR_IF_UNDEFINED(size); \ VERIFY_ALIGNMENT(&aligned_alloc_info); \ - MALLOC_TRACE("posix_memalign(al %llu, size %llu)\n", \ + MALLOC_TRACE("posix_memalign(al %llu, size %llu)", \ (ULong)alignment, (ULong)size ); \ /* Test whether the alignment argument is valid. It must be \ a power of two multiple of sizeof (void *). */ \ -- 2.47.3