summaryrefslogtreecommitdiff
path: root/deps/uv/src/unix/sunos.c
diff options
context:
space:
mode:
authorIgor Zinkovsky <igorzi@microsoft.com>2012-03-30 10:25:07 -0700
committerIgor Zinkovsky <igorzi@microsoft.com>2012-03-30 10:25:07 -0700
commit6aa7f6f73274c8df52a20d823bd28fc928a46a23 (patch)
tree3c76dd1fecd65858f3668eb44778a19c90f88102 /deps/uv/src/unix/sunos.c
parent17524432ff50c7e2ba53aa71b61c2f7409d5e02a (diff)
downloadandroid-node-v8-6aa7f6f73274c8df52a20d823bd28fc928a46a23.tar.gz
android-node-v8-6aa7f6f73274c8df52a20d823bd28fc928a46a23.tar.bz2
android-node-v8-6aa7f6f73274c8df52a20d823bd28fc928a46a23.zip
upgrade libuv to ab8c3b85c1
Diffstat (limited to 'deps/uv/src/unix/sunos.c')
-rw-r--r--deps/uv/src/unix/sunos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/uv/src/unix/sunos.c b/deps/uv/src/unix/sunos.c
index a87a2343a8..37fdd8982f 100644
--- a/deps/uv/src/unix/sunos.c
+++ b/deps/uv/src/unix/sunos.c
@@ -193,7 +193,7 @@ int uv_fs_event_init(uv_loop_t* loop,
void uv__fs_event_destroy(uv_fs_event_t* handle) {
ev_ref(handle->loop->ev);
ev_io_stop(handle->loop->ev, &handle->event_watcher);
- uv__close(handle->fd);
+ close(handle->fd);
handle->fd = -1;
free(handle->filename);
handle->filename = NULL;