svn commit: r237879 - stable/9/sys/cam
Kenneth D. Merry
ken at FreeBSD.org
Sun Jul 1 05:41:03 UTC 2012
Author: ken
Date: Sun Jul 1 05:39:49 2012
New Revision: 237879
URL: http://svn.freebsd.org/changeset/base/237879
Log:
MFC 237682:
r237682 | ken | 2012-06-27 21:36:13 -0600 (Wed, 27 Jun 2012) | 6 lines
Fix a typo in a panic() call.
PR: kern/169497
Submitted by: Steven Hartland <steven.hartland at multiplay.co.uk>
Modified:
stable/9/sys/cam/cam_periph.c
Directory Properties:
stable/9/sys/ (props changed)
Modified: stable/9/sys/cam/cam_periph.c
==============================================================================
--- stable/9/sys/cam/cam_periph.c Sun Jul 1 05:32:26 2012 (r237878)
+++ stable/9/sys/cam/cam_periph.c Sun Jul 1 05:39:49 2012 (r237879)
@@ -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-stable-9
mailing list