Fix a typo in a panic() call.

PR:		kern/169497
Submitted by:	Steven Hartland <steven.hartland@multiplay.co.uk>
MFC after:	3 days
This commit is contained in:
Kenneth D. Merry 2012-06-28 03:36:13 +00:00
parent 4ba82b1743
commit 905cb85d78
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=237682

View File

@ -273,7 +273,7 @@ cam_periph_alloc(periph_ctor_t *periph_ctor,
/* No cleanup to perform. */
break;
default:
panic("cam_periph_alloc: Unkown init level");
panic("%s: Unknown init level", __func__);
}
return(status);
}