Browse Source

stream_wrap: fix long line introduced in da5ad92

Said commit was a back-port from a feature branch where it did lint.
Mea culpa.
v0.11.6-release
Ben Noordhuis 12 years ago
parent
commit
b9150344ac
  1. 3
      src/stream_wrap.cc

3
src/stream_wrap.cc

@ -305,7 +305,8 @@ void StreamWrap::WriteStringImpl(const FunctionCallbackInfo<Value>& args) {
req_wrap->object()->Set(handle_sym, send_handle_obj);
}
err = wrap->callbacks()->DoWrite(req_wrap,
err = wrap->callbacks()->DoWrite(
req_wrap,
&buf,
1,
reinterpret_cast<uv_stream_t*>(send_handle),

Loading…
Cancel
Save