fd_util: fd_set_cloexec() returns a value on WIN32

This function is empty on WIN32, but we need to return a value.
This commit is contained in:
Max Kellermann 2010-05-18 23:09:01 +02:00
parent fa2ff849c5
commit fef46bcf49

View File

@ -75,6 +75,8 @@ fd_set_cloexec(int fd, bool enable)
#else
(void)fd;
(void)enable;
return 0;
#endif
}