svn commit: r201794 - in head/sys: ddb dev/ep dev/ex netinet6

Stefan Farfeleder stefanf at FreeBSD.org
Fri Jan 8 16:12:15 UTC 2010


On Fri, Jan 08, 2010 at 03:44:49PM +0000, Edward Tomasz Napierala wrote:
> Author: trasz
> Date: Fri Jan  8 15:44:49 2010
> New Revision: 201794
> URL: http://svn.freebsd.org/changeset/base/201794
> 
> Log:
>   Replace several instances of 'if (!a & b)' with 'if (!(a &b))' in order
>   to silence newer GCC versions.

They are not identical, !a & b is parsed as (!a) & b.  The code now
seems more correct however.


More information about the svn-src-all mailing list