win: fix function prototype

Mea culpa.
This commit is contained in:
Ben Noordhuis 2011-10-21 18:27:21 -07:00
parent ec825ffc62
commit 2dd02829c1

View File

@ -964,7 +964,7 @@ int uv_tcp_nodelay(uv_tcp_t* handle, int enable) {
}
int uv_tcp_keepalive(uv_tcp_t* handle, int enable, int delay) {
int uv_tcp_keepalive(uv_tcp_t* handle, int enable, unsigned int delay) {
uv__set_artificial_error(handle->loop, UV_ENOSYS);
return -1;
}