From b9150344ac35c77debb1c915a1b44df085c5cc29 Mon Sep 17 00:00:00 2001 From: Ben Noordhuis Date: Wed, 7 Aug 2013 21:30:46 +0200 Subject: [PATCH] stream_wrap: fix long line introduced in da5ad92 Said commit was a back-port from a feature branch where it did lint. Mea culpa. --- src/stream_wrap.cc | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/stream_wrap.cc b/src/stream_wrap.cc index 7fddb82..84905ac 100644 --- a/src/stream_wrap.cc +++ b/src/stream_wrap.cc @@ -305,11 +305,12 @@ void StreamWrap::WriteStringImpl(const FunctionCallbackInfo& args) { req_wrap->object()->Set(handle_sym, send_handle_obj); } - err = wrap->callbacks()->DoWrite(req_wrap, - &buf, - 1, - reinterpret_cast(send_handle), - StreamWrap::AfterWrite); + err = wrap->callbacks()->DoWrite( + req_wrap, + &buf, + 1, + reinterpret_cast(send_handle), + StreamWrap::AfterWrite); } req_wrap->Dispatched(); -- 2.7.4