Date: Wed, 9 Aug 2006 13:28:05 GMT From: Roman Divacky <rdivacky@FreeBSD.org> To: Perforce Change Reviews <perforce@FreeBSD.org> Subject: PERFORCE change 103506 for review Message-ID: <200608091328.k79DS5Uo056138@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=103506 Change 103506 by rdivacky@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) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200608091328.k79DS5Uo056138>