svn commit: r237682 - head/sys/cam

Kenneth D. Merry ken at FreeBSD.org
Thu Jun 28 03:36:14 UTC 2012


Author: ken
Date: Thu Jun 28 03:36:13 2012
New Revision: 237682
URL: http://svn.freebsd.org/changeset/base/237682

Log:
  Fix a typo in a panic() call.
  
  PR:		kern/169497
  Submitted by:	Steven Hartland <steven.hartland at multiplay.co.uk>
  MFC after:	3 days

Modified:
  head/sys/cam/cam_periph.c

Modified: head/sys/cam/cam_periph.c
==============================================================================
--- head/sys/cam/cam_periph.c	Thu Jun 28 03:30:17 2012	(r237681)
+++ head/sys/cam/cam_periph.c	Thu Jun 28 03:36:13 2012	(r237682)
@@ -273,7 +273,7 @@ failure:
 		/* No cleanup to perform. */
 		break;
 	default:
-		panic("cam_periph_alloc: Unkown init level");
+		panic("%s: Unknown init level", __func__);
 	}
 	return(status);
 }


More information about the svn-src-head mailing list