mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2024-12-24 21:52:17 +00:00
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.
This commit is contained in:
parent
c26c72d89b
commit
ff57f1bbcf
@ -2016,7 +2016,7 @@ smp_fetch_sc_tracked(const struct arg *args, struct sample *smp, const char *kw,
|
||||
smp->data.u.sint = !!stkctr;
|
||||
|
||||
/* release the ref count */
|
||||
if ((stkctr == &tmpstkctr))
|
||||
if (stkctr == &tmpstkctr)
|
||||
stktable_release(stkctr->table, stkctr_entry(stkctr));
|
||||
|
||||
return 1;
|
||||
|
Loading…
Reference in New Issue
Block a user