diff options
author | Austin Clements <[email protected]> | 2010-09-01 00:32:27 -0400 |
---|---|---|
committer | Austin Clements <[email protected]> | 2010-09-01 00:32:27 -0400 |
commit | 5efca9054f1911e206831e16c2ca5ac8c8fc7c12 (patch) | |
tree | bf0b4d61b43dfca860c4c93e01fd1ad7fa7f7dbf /trap.c | |
parent | 5c4dc7395b75d8b41c1104fe59a0d14d81a8a428 (diff) | |
download | xv6-labs-5efca9054f1911e206831e16c2ca5ac8c8fc7c12.tar.gz xv6-labs-5efca9054f1911e206831e16c2ca5ac8c8fc7c12.tar.bz2 xv6-labs-5efca9054f1911e206831e16c2ca5ac8c8fc7c12.zip |
Tab police
Diffstat (limited to 'trap.c')
-rw-r--r-- | trap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |