Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 8 Jan 2010 17:12:10 +0100
From:      Stefan Farfeleder <stefanf@FreeBSD.org>
To:        Edward Tomasz Napierala <trasz@FreeBSD.org>
Cc:        svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org
Subject:   Re: svn commit: r201794 - in head/sys: ddb dev/ep dev/ex netinet6
Message-ID:  <20100108161210.GC1610@mole.fafoe.narf.at>
In-Reply-To: <201001081544.o08FinVh015359@svn.freebsd.org>
References:  <201001081544.o08FinVh015359@svn.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20100108161210.GC1610>