commit | 091e86e1ee8ec51bd5a3c1935666a822a51b9051 | [log] [tgz] |
---|---|---|
author | Willy Tarreau <w@1wt.eu> | Wed Aug 10 21:21:57 2016 +0200 |
committer | Willy Tarreau <w@1wt.eu> | Wed Aug 10 21:23:48 2016 +0200 |
tree | 29bffc9e298fad6b2a7a7417d378c09fb1f402a5 | |
parent | e1cc4b52312905adeba5fd6f56b090d8035d160b [diff] |
BUILD: poll: remove unused hap_fd_isset() which causes a warning with clang Clang reports that this function is not used : src/ev_poll.c:34:28: warning: unused function 'hap_fd_isset' [-Wunused-function] static inline unsigned int hap_fd_isset(int fd, unsigned int *evts) It's been true since the rework of the pollers in 1.5 and it's unlikely we'll ever need it anymore, so better remove it now to provide clean builds. This fix can be backported to 1.6 and 1.5 now.