From: Paul Floyd Date: Sat, 6 Sep 2025 07:16:17 +0000 (+0200) Subject: posix_memalign wrapper - remove newline from malloc trace X-Git-Tag: VALGRIND_3_26_0~154 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=56f778b6dd438c139323d3734f914e2a7010be1c;p=thirdparty%2Fvalgrind.git posix_memalign wrapper - remove newline from malloc trace --- 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 *). */ \