CLEANUP: stick-tables: Remove unneeded double (()) around conditional clause
In the past this conditional had multiple conditionals which is why the
additional parentheses were needed. The conditional was simplified but
the duplicate parentheses were not cleaned up.
diff --git a/src/stick_table.c b/src/stick_table.c
index d2aea6d..a65ceb0 100644
--- a/src/stick_table.c
+++ b/src/stick_table.c
@@ -2016,7 +2016,7 @@
smp->data.u.sint = !!stkctr;
/* release the ref count */
- if ((stkctr == &tmpstkctr))
+ if (stkctr == &tmpstkctr)
stktable_release(stkctr->table, stkctr_entry(stkctr));
return 1;