]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/commit
MFC r311649:
authordim <dim@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Wed, 11 Jan 2017 20:45:27 +0000 (20:45 +0000)
committerdim <dim@ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f>
Wed, 11 Jan 2017 20:45:27 +0000 (20:45 +0000)
commit2f7acf2dcb606988dd8dbbec7a4977603968933a
tree3f180c00e925e44022eb053b941cefdda93830f2
parent5aba0fabec2922bad1ee3ff11cbb8ad69c67278e
MFC r311649:

Fix the following clang 4.0.0 warning in ngatm's snmp_atm.c:

    contrib/ngatm/snmp_atm/snmp_atm.c:173:6: error: logical not is only
    applied to the left hand side of this bitwise operator
    [-Werror,-Wlogical-not-parentheses]
            if (!ifmr.ifm_status & IFM_AVALID) {
                ^                ~

Obviously, the masking needs to be done before the logical not
operation.  Add parentheses to make it so.

git-svn-id: svn://svn.freebsd.org/base/stable/9@311937 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
contrib/ngatm/snmp_atm/snmp_atm.c