commit | c9c475e40d9104cc12ebc9320cb768bb4794766d | [log] [tgz] |
---|---|---|
author | Jerome Magnin <jmagnin@haproxy.com> | Wed May 13 15:11:02 2020 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed May 13 16:25:26 2020 +0200 |
tree | c1e386ea1046e94fe13fb353a140304b5b07d19b | |
parent | d645574fd49d19da9513d19f78648de2c9bc670a [diff] |
BUILD: select: only declare existing local labels to appease clang Commit 42a50bd19 ("BUG/MINOR: pollers: remove uneeded free in global init") removed the 'fail_revt' label from the _do_init() function in src/ev_select.c but left the local label declaration, which makes clang unhappy and unable to build. These labels are only historic and unneeded anyway so let's remove them. This should be backported where 42a50bd19 is backported.