mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-27 00:57:03 -04:00
BUILD: select: only declare existing local labels to appease clang
Commit42a50bd19("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 where42a50bd19is backported.
This commit is contained in:
parent
d645574fd4
commit
c9c475e40d
1 changed files with 0 additions and 1 deletions
|
|
@ -253,7 +253,6 @@ static void deinit_select_per_thread()
|
|||
*/
|
||||
static int _do_init(struct poller *p)
|
||||
{
|
||||
__label__ fail_swevt, fail_srevt, fail_revt;
|
||||
int fd_set_bytes;
|
||||
|
||||
p->private = NULL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue