Skip to content

Commit 456620c

Browse files
qiyeliuakpm00
authored andcommitted
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>
1 parent ce50f4b commit 456620c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mm/debug.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ static void __dump_page(const struct page *page)
173173
void dump_page(const struct page *page, const char *reason)
174174
{
175175
if (PagePoisoned(page))
176-
pr_warn("page:%p is uninitialized and poisoned", page);
176+
pr_warn("page:%p is uninitialized and poisoned\n", page);
177177
else
178178
__dump_page(page);
179179
if (reason)

0 commit comments

Comments
 (0)