Skip to content

Commit

Permalink
parisc: Add line-break when printing segfault info
Browse files Browse the repository at this point in the history
Add a leading line break else printed line gets too long.

Signed-off-by: Helge Deller <deller@gmx.de>
Cc: <stable@vger.kernel.org> # v4.9
  • Loading branch information
Helge Deller committed Jan 2, 2017
1 parent 1fe0a7e commit b4a9eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/parisc/mm/fault.c
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ show_signal_msg(struct pt_regs *regs, unsigned long code,
tsk->comm, code, address);
print_vma_addr(KERN_CONT " in ", regs->iaoq[0]);

pr_cont(" trap #%lu: %s%c", code, trap_name(code),
pr_cont("\ntrap #%lu: %s%c", code, trap_name(code),
vma ? ',':'\n');

if (vma)
Expand Down

0 comments on commit b4a9eb4

Please sign in to comment.