summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--extensions/libxt_cluster.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/libxt_cluster.c b/extensions/libxt_cluster.c
index edc14d36..e1607d04 100644
--- a/extensions/libxt_cluster.c
+++ b/extensions/libxt_cluster.c
@@ -90,7 +90,7 @@ cluster_parse(int c, char **argv, int invert, unsigned int *flags,
"`--cluster-local-node'", optarg);
}
if (invert)
- info->flags |= (1 << XT_CLUSTER_F_INV);
+ info->flags |= XT_CLUSTER_F_INV;
info->node_mask = node_mask = (1 << (num - 1));
*flags |= 1 << c;
@@ -115,7 +115,7 @@ cluster_parse(int c, char **argv, int invert, unsigned int *flags,
"`--cluster-local-node'", optarg);
}
if (invert)
- info->flags |= (1 << XT_CLUSTER_F_INV);
+ info->flags |= XT_CLUSTER_F_INV;
info->node_mask = node_mask = num;
*flags |= 1 << c;