batman-adv: remove parenthesis from return statements
[deliverable/linux.git] / net / batman-adv / distributed-arp-table.c
index 01ec607238a797bfb27e2d637e8d5bb24e192dca..93e1fb04905539eac6ed247db1919f50dcf38ddc 100644 (file)
@@ -139,7 +139,7 @@ static int batadv_compare_dat(const struct hlist_node *node, const void *data2)
        const void *data1 = container_of(node, struct batadv_dat_entry,
                                         hash_entry);
 
-       return (memcmp(data1, data2, sizeof(__be32)) == 0 ? 1 : 0);
+       return memcmp(data1, data2, sizeof(__be32)) == 0 ? 1 : 0;
 }
 
 /**
This page took 0.023074 seconds and 5 git commands to generate.