From: Suren Baghdasaryan Date: Thu, 11 Jul 2024 22:04:55 +0000 (-0700) Subject: lib: add missing newline character in the warning message X-Git-Tag: v6.11-rc1~85^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4810a82c8a8ae06fe6496a23fcb89a4952603e60;p=thirdparty%2Fkernel%2Flinux.git lib: add missing newline character in the warning message Link: https://lkml.kernel.org/r/20240711220457.1751071-1-surenb@google.com Fixes: 22d407b164ff ("lib: add allocation tagging support for memory allocation profiling") Signed-off-by: Suren Baghdasaryan Cc: Kees Cook Cc: Kent Overstreet Cc: Pasha Tatashin Cc: Sourav Panda Cc: Vlastimil Babka Signed-off-by: Andrew Morton --- diff --git a/include/linux/alloc_tag.h b/include/linux/alloc_tag.h index abd24016a900e..8c61ccd161ba3 100644 --- a/include/linux/alloc_tag.h +++ b/include/linux/alloc_tag.h @@ -122,7 +122,7 @@ static inline void alloc_tag_add_check(union codetag_ref *ref, struct alloc_tag "alloc_tag was not cleared (got tag for %s:%u)\n", ref->ct->filename, ref->ct->lineno); - WARN_ONCE(!tag, "current->alloc_tag not set"); + WARN_ONCE(!tag, "current->alloc_tag not set\n"); } static inline void alloc_tag_sub_check(union codetag_ref *ref)