From f75b005a99a0047b17d792cd6a2dd8820a7705fe Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Sun, 11 May 2003 22:55:40 +0000 Subject: [PATCH] I missed another printf format error while extracting the patch. Approved by: re (blanket amd64/*) --- sys/amd64/amd64/trap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/amd64/amd64/trap.c b/sys/amd64/amd64/trap.c index d0d8e339e35..19dd05b9e10 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,