From: aoyama Date: Wed, 28 Jun 2017 10:31:48 +0000 (+0000) Subject: Delete '0x' in DIAGNOSTIC panic message; ipl value is printed in decimal. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=fb019542f0af04f30830c00e773a7a905aa2f1e0;p=openbsd Delete '0x' in DIAGNOSTIC panic message; ipl value is printed in decimal. --- 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 */