Fix incomplete printf.

PR:		kern/177889
Submitted by:	Sven-Thorsten Dietrich <sven vyatta com>
MFC after:	1 week
This commit is contained in:
Xin LI 2013-04-16 19:32:12 +00:00
parent c1031303f0
commit f2297451fe
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=249562

View File

@ -2846,7 +2846,8 @@ ip_mroute_modevent(module_t mod, int type, void *unused)
if_detach_event_tag = EVENTHANDLER_REGISTER(ifnet_departure_event,
if_detached_event, NULL, EVENTHANDLER_PRI_ANY);
if (if_detach_event_tag == NULL) {
printf("ip_mroute: unable to ifnet_deperture_even handler\n");
printf("ip_mroute: unable to register "
"ifnet_departure_event handler\n");
MROUTER_LOCK_DESTROY();
return (EINVAL);
}