diff options
author | Ben Noordhuis <info@bnoordhuis.nl> | 2013-09-04 14:46:35 +0200 |
---|---|---|
committer | Ben Noordhuis <info@bnoordhuis.nl> | 2013-09-04 18:11:32 +0200 |
commit | 7494c84fe6fa1127de5a9827119d9e389cbfb016 (patch) | |
tree | 6f9ca90a24ea233aa3426579a455a425fbad470d /deps/uv/test/dns-server.c | |
parent | 358c2901567c005689dceef1361754cca95ca14e (diff) | |
download | node-new-7494c84fe6fa1127de5a9827119d9e389cbfb016.tar.gz |
uv: upgrade to v0.11.13
This commit changes src/tcp_wrap.cc and src/udp_wrap.cc just enough to
get by (i.e. to compile and function correctly.)
The new libuv API allows for more cleanup and deduplication but I'm
saving that for another day.
Diffstat (limited to 'deps/uv/test/dns-server.c')
-rw-r--r-- | deps/uv/test/dns-server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/uv/test/dns-server.c b/deps/uv/test/dns-server.c index aabded5539..8ffe4e7b22 100644 --- a/deps/uv/test/dns-server.c +++ b/deps/uv/test/dns-server.c @@ -305,7 +305,7 @@ static int dns_start(int port) { return 1; } - r = uv_tcp_bind(&server, &addr); + r = uv_tcp_bind(&server, (const struct sockaddr*) &addr); if (r) { /* TODO: Error codes */ fprintf(stderr, "Bind error\n"); |