Commit 1f78606c by Andy Vermeulen

uv_after_work_cb fix for node v0.10.0, with updated darwin-x64 precompiled bindings

parent 4fe8fa4c
......@@ -66,7 +66,7 @@ Handle<Value> Render(const Arguments& args) {
ctx_w->callback = Persistent<Function>::New(callback);
ctx_w->request.data = ctx_w;
int status = uv_queue_work(uv_default_loop(), &ctx_w->request, WorkOnContext, MakeCallback);
int status = uv_queue_work(uv_default_loop(), &ctx_w->request, WorkOnContext, (uv_after_work_cb)MakeCallback);
assert(status == 0);
return Undefined();
......
This diff was suppressed by a .gitattributes entry.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment