From e5805dac3059bb5b7a8f93a4c29089ae2b4aaa3f Mon Sep 17 00:00:00 2001 From: ckolivas Date: Mon, 27 Oct 2014 23:59:43 +1100 Subject: [PATCH] Fix warnings --- src/libckpool.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libckpool.c b/src/libckpool.c index 43be56ec..bb34d79f 100644 --- a/src/libckpool.c +++ b/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;