diff options
author | Kenneth D. Merry <ken@FreeBSD.org> | 2012-06-28 03:36:13 +0000 |
---|---|---|
committer | Kenneth D. Merry <ken@FreeBSD.org> | 2012-06-28 03:36:13 +0000 |
commit | 905cb85d78f63676a2f391fe03bbfcc64af03412 (patch) | |
tree | cb88779e6240448b8abda7a49505f3aee9e977bf /sys/cam | |
parent | 4ba82b174391bb1e122854c59bc51b9a89926cee (diff) | |
download | src-905cb85d78f63676a2f391fe03bbfcc64af03412.tar.gz src-905cb85d78f63676a2f391fe03bbfcc64af03412.zip |
Fix a typo in a panic() call.
PR: kern/169497
Submitted by: Steven Hartland <steven.hartland@multiplay.co.uk>
MFC after: 3 days
Notes
Notes:
svn path=/head/; revision=237682
Diffstat (limited to 'sys/cam')
-rw-r--r-- | sys/cam/cam_periph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/cam/cam_periph.c b/sys/cam/cam_periph.c index d7ab2a12ad4c..d947732c30f2 100644 --- a/sys/cam/cam_periph.c +++ b/sys/cam/cam_periph.c @@ -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); } |