Date: Fri, 28 Feb 2003 06:28:51 -0800 (PST) From: John Baldwin <jhb@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 26072 for review Message-ID: <200302281428.h1SESp0b041006@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=26072 Change 26072 by jhb@jhb_laptop on 2003/02/28 06:28:29 Remove a set of extraneous parens. (keramida) Affected files ... .. //depot/projects/smpng/sys/sys/eventhandler.h#14 edit Differences ... ==== //depot/projects/smpng/sys/sys/eventhandler.h#14 (text+ko) ==== @@ -72,7 +72,7 @@ ("eventhandler_invoke: runcount overflow")); \ CTR0(KTR_EVH, "eventhandler_invoke(\"" __STRING(name) "\")"); \ TAILQ_FOREACH(_ep, &((list)->el_entries), ee_link) { \ - if ((_ep->ee_priority != EHE_DEAD_PRIORITY)) { \ + if (_ep->ee_priority != EHE_DEAD_PRIORITY) { \ EHL_UNLOCK((list)); \ _t = (struct eventhandler_entry_ ## name *)_ep; \ CTR1(KTR_EVH, "eventhandler_invoke: executing %p", \ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe p4-projects" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200302281428.h1SESp0b041006>