summaryrefslogtreecommitdiff
path: root/xutils.c
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2013-05-12 13:59:46 +0200
committerTobias Klauser <tklauser@distanz.ch>2013-05-12 13:59:46 +0200
commita2937f460bb9603d6f7ec19d1f1ebe5adb40020d (patch)
tree0663a3860250260b22726d95359acb7757b093e7 /xutils.c
parentb76adfd12a21676abb82e9f1ebe134510d9a4766 (diff)
xutils: Make set_nonblocking() void
The return values is always 0 and it is never checked anyhow, so make the function void. Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
Diffstat (limited to 'xutils.c')
-rw-r--r--xutils.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/xutils.c b/xutils.c
index 019c445..60b598c 100644
--- a/xutils.c
+++ b/xutils.c
@@ -169,13 +169,11 @@ void set_sock_uncork(int fd, int udp)
set_tcp_uncork(fd);
}
-int set_nonblocking(int fd)
+void set_nonblocking(int fd)
{
int ret = fcntl(fd, F_SETFL, fcntl(fd, F_GETFD, 0) | O_NONBLOCK);
if (unlikely(ret < 0))
panic("Cannot fcntl!\n");
-
- return 0;
}
int set_nonblocking_sloppy(int fd)