summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-async.c
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-07-20 19:55:12 -0700
committerRyan Dahl <ry@tinyclouds.org>2011-07-20 19:57:03 -0700
commit133036fdadbca1099cf1cf589987eea01236722e (patch)
treee5dcf60cf26bd8faf652e1aa2d856b635e776e00 /deps/uv/test/test-async.c
parent1b89323e92001481f7b0e1f14736d288b58b160e (diff)
downloadandroid-node-v8-133036fdadbca1099cf1cf589987eea01236722e.tar.gz
android-node-v8-133036fdadbca1099cf1cf589987eea01236722e.tar.bz2
android-node-v8-133036fdadbca1099cf1cf589987eea01236722e.zip
upgrade libuv to 6e50576
Diffstat (limited to 'deps/uv/test/test-async.c')
-rw-r--r--deps/uv/test/test-async.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/deps/uv/test/test-async.c b/deps/uv/test/test-async.c
index f91d9b45ae..2a3a1bfa95 100644
--- a/deps/uv/test/test-async.c
+++ b/deps/uv/test/test-async.c
@@ -146,8 +146,6 @@ static void async2_cb(uv_handle_t* handle, int status) {
static void prepare_cb(uv_prepare_t* handle, int status) {
- int r;
-
ASSERT(handle == &prepare_handle);
ASSERT(status == 0);
@@ -170,8 +168,7 @@ static void prepare_cb(uv_prepare_t* handle, int status) {
#endif
case 1:
- r = uv_close((uv_handle_t*)handle, close_cb);
- ASSERT(r == 0);
+ uv_close((uv_handle_t*)handle, close_cb);
break;
default: