diff --git a/fs/proc/cmdline.c b/fs/proc/cmdline.c
index 403cbb12a6e9b428fb56f0767492a0dd3acde536..8233e7af9389dc8316e71a4f42e0206a6ceb5e9b 100644
--- a/fs/proc/cmdline.c
+++ b/fs/proc/cmdline.c
@@ -6,7 +6,8 @@
 
 static int cmdline_proc_show(struct seq_file *m, void *v)
 {
-	seq_printf(m, "%s\n", saved_command_line);
+	seq_puts(m, saved_command_line);
+	seq_putc(m, '\n');
 	return 0;
 }