Date: Thu, 15 Oct 2009 18:51:19 +0000 (UTC) From: John Baldwin <jhb@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r198149 - head/sys/kern Message-ID: <200910151851.n9FIpJBD081808@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jhb Date: Thu Oct 15 18:51:19 2009 New Revision: 198149 URL: http://svn.freebsd.org/changeset/base/198149 Log: Use language more closely resembling English in a panic message. Pointy hat to: jhb Submitted by: pluknet Modified: head/sys/kern/kern_intr.c Modified: head/sys/kern/kern_intr.c ============================================================================== --- head/sys/kern/kern_intr.c Thu Oct 15 18:17:29 2009 (r198148) +++ head/sys/kern/kern_intr.c Thu Oct 15 18:51:19 2009 (r198149) @@ -684,7 +684,7 @@ intr_event_describe_handler(struct intr_ } if (ih == NULL) { mtx_unlock(&ie->ie_lock); - panic("handler %p not find in interrupt event %p", cookie, ie); + panic("handler %p not found in interrupt event %p", cookie, ie); } #endif ih = cookie;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200910151851.n9FIpJBD081808>