svn commit: r198149 - head/sys/kern

John Baldwin jhb at FreeBSD.org
Thu Oct 15 18:51:20 UTC 2009


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;


More information about the svn-src-head mailing list