summaryrefslogtreecommitdiff
path: root/trap.c
diff options
context:
space:
mode:
authorAustin Clements <[email protected]>2010-09-01 00:32:27 -0400
committerAustin Clements <[email protected]>2010-09-01 00:32:27 -0400
commit5efca9054f1911e206831e16c2ca5ac8c8fc7c12 (patch)
treebf0b4d61b43dfca860c4c93e01fd1ad7fa7f7dbf /trap.c
parent5c4dc7395b75d8b41c1104fe59a0d14d81a8a428 (diff)
downloadxv6-labs-5efca9054f1911e206831e16c2ca5ac8c8fc7c12.tar.gz
xv6-labs-5efca9054f1911e206831e16c2ca5ac8c8fc7c12.tar.bz2
xv6-labs-5efca9054f1911e206831e16c2ca5ac8c8fc7c12.zip
Tab police
Diffstat (limited to 'trap.c')
-rw-r--r--trap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/trap.c b/trap.c
index ae26739..b2b2ebb 100644
--- a/trap.c
+++ b/trap.c
@@ -86,7 +86,7 @@ trap(struct trapframe *tf)
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());
+ rcr2());
proc->killed = 1;
}