diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2013-05-12 13:59:46 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2013-05-12 13:59:46 +0200 |
commit | a2937f460bb9603d6f7ec19d1f1ebe5adb40020d (patch) | |
tree | 0663a3860250260b22726d95359acb7757b093e7 /xutils.c | |
parent | b76adfd12a21676abb82e9f1ebe134510d9a4766 (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.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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) |