diff mbox series

mm/debug: Add line breaks

Message ID 20250312093717.364031-1-liuye@kylinos.cn (mailing list archive)
State New
Headers show
Series mm/debug: Add line breaks | expand

Commit Message

Liu Ye March 12, 2025, 9:37 a.m. UTC
Missing a newline character at the end of the format string.

Signed-off-by: Liu Ye <liuye@kylinos.cn>
---
 mm/debug.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/mm/debug.c b/mm/debug.c
index 8d2acf432385..db1894c5e8b9 100644
--- a/mm/debug.c
+++ b/mm/debug.c
@@ -165,7 +165,7 @@  static void __dump_page(const struct page *page)
 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)