Skip to content
This repository has been archived by the owner on May 4, 2018. It is now read-only.

Commit

Permalink
win: fix function prototype
Browse files Browse the repository at this point in the history
Mea culpa.
  • Loading branch information
bnoordhuis committed Oct 22, 2011
1 parent ec825ff commit 2dd0282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/win/tcp.c
Expand Up @@ -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;
}

0 comments on commit 2dd0282

Please sign in to comment.