Skip to content

Commit 7e2bc81

Browse files
Minfei Huangtorvalds
authored andcommitted
proc/base: make prompt shell start from new line after executing "cat /proc/$pid/wchan"
It is not elegant that prompt shell does not start from new line after executing "cat /proc/$pid/wchan". Make prompt shell start from new line. Signed-off-by: Minfei Huang <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent b5946be commit 7e2bc81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/proc/base.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ static int proc_pid_wchan(struct seq_file *m, struct pid_namespace *ns,
434434
&& !lookup_symbol_name(wchan, symname))
435435
seq_printf(m, "%s", symname);
436436
else
437-
seq_putc(m, '0');
437+
seq_puts(m, "0\n");
438438

439439
return 0;
440440
}

0 commit comments

Comments
 (0)