[NETFILTER]: Remove redundant parentheses/braces
[safe/jmp/linux-2.6] / net / netfilter / xt_connbytes.c
index 99c246e..d9b2e75 100644 (file)
@@ -90,9 +90,9 @@ match(const struct sk_buff *skb,
        }
 
        if (sinfo->count.to)
-               return (what <= sinfo->count.to && what >= sinfo->count.from);
+               return what <= sinfo->count.to && what >= sinfo->count.from;
        else
-               return (what >= sinfo->count.from);
+               return what >= sinfo->count.from;
 }
 
 static bool check(const char *tablename,