]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - net/netfilter/xt_tcpudp.c
[NETFILTER]: Remove redundant parentheses/braces
[net-next-2.6.git] / net / netfilter / xt_tcpudp.c
index 0dd3022cc79afb88ba3278c884bdf7950d85660d..5cb345aeeca8de5a96713b2550ebb502ead9c95f 100644 (file)
@@ -95,7 +95,7 @@ tcp_match(const struct sk_buff *skb,
                return false;
        }
 
-#define FWINVTCP(bool,invflg) ((bool) ^ !!(tcpinfo->invflags & invflg))
+#define FWINVTCP(bool, invflg) ((bool) ^ !!(tcpinfo->invflags & (invflg)))
 
        th = skb_header_pointer(skb, protoff, sizeof(_tcph), &_tcph);
        if (th == NULL) {