Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-10-06 23:26:51 +0400
committerRyan Dahl <ry@tinyclouds.org>2011-10-06 23:34:24 +0400
commit311fe737e8cfa2880b45f95c53223629142818db (patch)
tree535460f5e5a48422c138f97bc7866b9093e44e39 /src/pipe_wrap.cc
parent4c1d4411591b99bcd978f7e11e777ec56818e573 (diff)
Upgrade libuv to 60c639f
Also remove unused src/stdio_wrap.cc
Diffstat (limited to 'src/pipe_wrap.cc')
-rw-r--r--src/pipe_wrap.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pipe_wrap.cc b/src/pipe_wrap.cc
index 162f1efef2a..c4f965d65fd 100644
--- a/src/pipe_wrap.cc
+++ b/src/pipe_wrap.cc
@@ -95,7 +95,7 @@ Handle<Value> PipeWrap::New(const Arguments& args) {
PipeWrap::PipeWrap(Handle<Object> object) : StreamWrap(object,
(uv_stream_t*) &handle_) {
- int r = uv_pipe_init(uv_default_loop(), &handle_);
+ int r = uv_pipe_init(uv_default_loop(), &handle_, 0);
assert(r == 0); // How do we proxy this error up to javascript?
// Suggestion: uv_pipe_init() returns void.
handle_.data = reinterpret_cast<void*>(this);