From 2dd02829c1a97814144cb87ddcef45da3f0cebf3 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Fri, 21 Oct 2011 18:27:21 -0700 Subject: [PATCH] win: fix function prototype Mea culpa. --- src/win/tcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win/tcp.c b/src/win/tcp.c index 1133cc3f..0ff6890b 100644 --- a/src/win/tcp.c +++ b/src/win/tcp.c @@ -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; }