diff options
author | peter <peter@FreeBSD.org> | 2003-05-11 22:55:40 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-05-11 22:55:40 +0000 |
commit | 756ca1f04c03e8bf4647ad3cdeb7b1648e589801 (patch) | |
tree | 0b01d8827907a2f56cc41411f2f0794bc4263335 | |
parent | 7ba8edf9017279fbc7169c479b450909da04905f (diff) | |
download | FreeBSD-src-756ca1f04c03e8bf4647ad3cdeb7b1648e589801.zip FreeBSD-src-756ca1f04c03e8bf4647ad3cdeb7b1648e589801.tar.gz |
I missed another printf format error while extracting the patch.
Approved by: re (blanket amd64/*)
-rw-r--r-- | sys/amd64/amd64/trap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/amd64/trap.c b/sys/amd64/amd64/trap.c index d0d8e33..19dd05b 100644 --- a/sys/amd64/amd64/trap.c +++ b/sys/amd64/amd64/trap.c @@ -592,7 +592,7 @@ trap_fatal(frame, eva) } printf("stack pointer = 0x%x:0x%lx\n", ss, esp); printf("frame pointer = 0x%x:0x%lx\n", ss, frame->tf_rbp); - printf("code segment = base 0x%lx, limit 0x%x, type 0x%x\n", + printf("code segment = base 0x%lx, limit 0x%lx, type 0x%x\n", softseg.ssd_base, softseg.ssd_limit, softseg.ssd_type); printf(" = DPL %d, pres %d, long %d, def32 %d, gran %d\n", softseg.ssd_dpl, softseg.ssd_p, softseg.ssd_long, softseg.ssd_def32, |