summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-callback-stack.c
diff options
context:
space:
mode:
authorBen Noordhuis <info@bnoordhuis.nl>2013-09-04 14:46:35 +0200
committerBen Noordhuis <info@bnoordhuis.nl>2013-09-04 18:11:32 +0200
commit7494c84fe6fa1127de5a9827119d9e389cbfb016 (patch)
tree6f9ca90a24ea233aa3426579a455a425fbad470d /deps/uv/test/test-callback-stack.c
parent358c2901567c005689dceef1361754cca95ca14e (diff)
downloadandroid-node-v8-7494c84fe6fa1127de5a9827119d9e389cbfb016.tar.gz
android-node-v8-7494c84fe6fa1127de5a9827119d9e389cbfb016.tar.bz2
android-node-v8-7494c84fe6fa1127de5a9827119d9e389cbfb016.zip
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/test-callback-stack.c')
-rw-r--r--deps/uv/test/test-callback-stack.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/deps/uv/test/test-callback-stack.c b/deps/uv/test/test-callback-stack.c
index ff6e93c4ef..accd549697 100644
--- a/deps/uv/test/test-callback-stack.c
+++ b/deps/uv/test/test-callback-stack.c
@@ -183,7 +183,10 @@ TEST_IMPL(callback_stack) {
nested++;
- if (uv_tcp_connect(&connect_req, &client, &addr, connect_cb)) {
+ if (uv_tcp_connect(&connect_req,
+ &client,
+ (const struct sockaddr*) &addr,
+ connect_cb)) {
FATAL("uv_tcp_connect failed");
}
nested--;