diff options
author | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2017-06-28 10:31:49 +0000 |
---|---|---|
committer | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2017-06-28 10:31:49 +0000 |
commit | 722b337eab3cabaf0e5c56aa4863c85f26468eb5 (patch) | |
tree | ab6648033c4082978db13b623c804ee2d5dee173 /sys/arch/luna88k | |
parent | b35dabc9b106fdce0c76b83ba3afeccef3da407b (diff) |
Delete '0x' in DIAGNOSTIC panic message; ipl value is printed in decimal.
Diffstat (limited to 'sys/arch/luna88k')
-rw-r--r-- | sys/arch/luna88k/luna88k/isr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/luna88k/luna88k/isr.c b/sys/arch/luna88k/luna88k/isr.c index 0a53ed3731a..66c53c114c6 100644 --- a/sys/arch/luna88k/luna88k/isr.c +++ b/sys/arch/luna88k/luna88k/isr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: isr.c,v 1.10 2015/05/18 04:06:37 miod Exp $ */ +/* $OpenBSD: isr.c,v 1.11 2017/06/28 10:31:48 aoyama Exp $ */ /* $NetBSD: isr.c,v 1.5 2000/07/09 08:08:20 nisimura Exp $ */ /*- @@ -148,7 +148,7 @@ isrdispatch_autovec(int ipl) #ifdef DIAGNOSTIC if (ipl < 0 || ipl >= NISRAUTOVEC) - panic("isrdispatch_autovec: bad ipl 0x%d", ipl); + panic("isrdispatch_autovec: bad ipl %d", ipl); #endif #if 0 /* XXX: already counted in machdep.c */ |