From 7472b2b451f100162fa4542f5bfe260385f861ad Mon Sep 17 00:00:00 2001 From: Austin Clements Date: Tue, 31 Aug 2010 16:26:08 -0400 Subject: Fix too-long lines --- trap.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'trap.c') diff --git a/trap.c b/trap.c index daee22f..ae26739 100644 --- a/trap.c +++ b/trap.c @@ -83,7 +83,8 @@ trap(struct trapframe *tf) panic("trap"); } // In user space, assume process misbehaved. - cprintf("pid %d %s: trap %d err %d on cpu %d eip 0x%x addr 0x%x--kill proc\n", + cprintf("pid %d %s: trap %d err %d on cpu %d " + "eip 0x%x addr 0x%x--kill proc\n", proc->pid, proc->name, tf->trapno, tf->err, cpu->id, tf->eip, rcr2()); proc->killed = 1; -- cgit v1.2.3