Browse Source

Fix warnings

master
ckolivas 10 years ago
parent
commit
e5805dac30
  1. 2
      src/libckpool.c

2
src/libckpool.c

@ -709,7 +709,6 @@ out:
int wait_read_select(int sockd, int timeout)
{
struct pollfd sfd;
int ret;
sfd.fd = sockd;
sfd.events = POLLIN;
@ -783,7 +782,6 @@ out:
int wait_write_select(int sockd, int timeout)
{
struct pollfd sfd;
int ret;
sfd.fd = sockd;
sfd.events = POLLOUT;

Loading…
Cancel
Save