mm/debug: add line breaks

Missing a newline character at the end of the format string.

Link: https://lkml.kernel.org/r/20250312093717.364031-1-liuye@kylinos.cn
Signed-off-by: Liu Ye <liuye@kylinos.cn>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
This commit is contained in:
Liu Ye 2025-03-12 17:37:17 +08:00 committed by Andrew Morton
parent ce50f4bc42
commit 456620c5cb

View File

@ -173,7 +173,7 @@ dump:
void dump_page(const struct page *page, const char *reason)
{
if (PagePoisoned(page))
pr_warn("page:%p is uninitialized and poisoned", page);
pr_warn("page:%p is uninitialized and poisoned\n", page);
else
__dump_page(page);
if (reason)