summaryrefslogtreecommitdiff
path: root/sys/arch/mips64
diff options
context:
space:
mode:
authorArtur Grabowski <art@cvs.openbsd.org>2005-05-22 19:40:52 +0000
committerArtur Grabowski <art@cvs.openbsd.org>2005-05-22 19:40:52 +0000
commit2d866d2b7371c091dd0dd359da0252f52d783f87 (patch)
treee09e910d40c428b99b6df80384f71ff22162bfed /sys/arch/mips64
parenta9a480570f76f5accd41a996a1b69c69179653fb (diff)
remove "0x" in front of %p in printfs.
eyeballed by krw@
Diffstat (limited to 'sys/arch/mips64')
-rw-r--r--sys/arch/mips64/mips64/db_machdep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/mips64/mips64/db_machdep.c b/sys/arch/mips64/mips64/db_machdep.c
index 7a97b1d8d28..d8596a700fc 100644
--- a/sys/arch/mips64/mips64/db_machdep.c
+++ b/sys/arch/mips64/mips64/db_machdep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: db_machdep.c,v 1.8 2004/10/30 14:48:59 pefo Exp $ */
+/* $OpenBSD: db_machdep.c,v 1.9 2005/05/22 19:40:51 art Exp $ */
/*
* Copyright (c) 1998-2003 Opsycon AB (www.opsycon.se)
@@ -268,7 +268,7 @@ loop:
/* check for bad PC */
if (pc & 3 || pc < KSEG0_BASE || pc >= (unsigned)edata) {
- (*pr)("PC 0x%p: not in kernel\n", pc);
+ (*pr)("PC %p: not in kernel\n", pc);
ra = 0;
goto done;
}