diff options
author | Peter Hessler <phessler@cvs.openbsd.org> | 2010-11-01 15:41:02 +0000 |
---|---|---|
committer | Peter Hessler <phessler@cvs.openbsd.org> | 2010-11-01 15:41:02 +0000 |
commit | 47d251cb9431fa04a99336625026e839ab00fdcb (patch) | |
tree | 47fbd44e6798eeb3fd76dcff182e7105cf79acdd /sys/arch/amd64 | |
parent | 349af04bba8320d85e9ac81c7936a74657d2dd7b (diff) |
use the amd64 name for this frame, instead of the i386 name, to be
consistent with the rest of the file.
requested to be a seperate commit by kettenis@
Diffstat (limited to 'sys/arch/amd64')
-rw-r--r-- | sys/arch/amd64/amd64/trap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/trap.c b/sys/arch/amd64/amd64/trap.c index ae0a48d6c2c..2a506003d65 100644 --- a/sys/arch/amd64/amd64/trap.c +++ b/sys/arch/amd64/amd64/trap.c @@ -1,4 +1,4 @@ -/* $OpenBSD: trap.c,v 1.21 2010/11/01 15:37:03 phessler Exp $ */ +/* $OpenBSD: trap.c,v 1.22 2010/11/01 15:41:01 phessler Exp $ */ /* $NetBSD: trap.c,v 1.2 2003/05/04 23:51:56 fvdl Exp $ */ /*- @@ -162,7 +162,7 @@ trap(struct trapframe *frame) #ifdef DEBUG if (trapdebug) { - printf("trap %d code %lx eip %lx cs %lx rflags %lx cr2 %lx " + printf("trap %d code %lx rip %lx cs %lx rflags %lx cr2 %lx " "cpl %x\n", type, frame->tf_err, frame->tf_rip, frame->tf_cs, frame->tf_rflags, rcr2(), curcpu()->ci_ilevel); |