diff options
author | rsc <rsc> | 2006-09-06 17:04:06 +0000 |
---|---|---|
committer | rsc <rsc> | 2006-09-06 17:04:06 +0000 |
commit | a650c606fecc7e3938345e2bc52050a9ea725e7a (patch) | |
tree | 3bd2cfcd215f7ad4abdb087cdfe91f608c7f0801 /trap.c | |
parent | 45854caa93eecc3f80d34940b7cf6a400b640d69 (diff) | |
download | xv6-labs-a650c606fecc7e3938345e2bc52050a9ea725e7a.tar.gz xv6-labs-a650c606fecc7e3938345e2bc52050a9ea725e7a.tar.bz2 xv6-labs-a650c606fecc7e3938345e2bc52050a9ea725e7a.zip |
spacing fixes: no tabs, 2-space indents (for rtm)
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) if(curproc[cpu()]) { cprintf("pid %d: unhandled trap %d on cpu %d eip %x---terminate process\n", - curproc[cpu()]->pid, v, cpu(), tf->eip); + curproc[cpu()]->pid, v, cpu(), tf->eip); proc_exit(); } cprintf("unexpected trap %d from cpu %d eip %x\n", v, cpu(), tf->eip); |