PERFORCE change 103506 for review

Roman Divacky rdivacky at FreeBSD.org
Wed Aug 9 13:28:09 UTC 2006


http://perforce.freebsd.org/chv.cgi?CH=103506

Change 103506 by rdivacky at rdivacky_witten on 2006/08/09 13:27:08

	Fix KASSERT syntax.

Affected files ...

.. //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_machdep.c#37 edit

Differences ...

==== //depot/projects/soc2006/rdivacky_linuxolator/i386/linux/linux_machdep.c#37 (text+ko) ====

@@ -426,7 +426,7 @@
 	error = linux_proc_init(td, p2->p_pid, args->flags);
 	/* reference it - no need to check this */
 	em = em_find(p2->p_pid, EMUL_UNLOCKED);
-	KASSERT(em != NULL, "no emuldata after proc_init()!\n");
+	KASSERT(em != NULL, ("no emuldata after proc_init()!\n"));
 	/* and adjust it */
 	if (args->flags & CLONE_PARENT_SETTID) {
 	   	if (args->parent_tidptr == NULL) {


More information about the p4-projects mailing list