From 3c0b233d043e75d257217cf025b25cef40260e7b Mon Sep 17 00:00:00 2001 From: Samuel Attard Date: Mon, 13 Nov 2017 11:42:42 +1100 Subject: [PATCH] Fix line length in caller.cc --- atom/common/api/event_emitter_caller.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/atom/common/api/event_emitter_caller.cc b/atom/common/api/event_emitter_caller.cc index 1f6b5e81b58d..746b27006b9c 100644 --- a/atom/common/api/event_emitter_caller.cc +++ b/atom/common/api/event_emitter_caller.cc @@ -20,8 +20,9 @@ v8::Local CallMethodWithArgs(v8::Isolate* isolate, v8::MicrotasksScope::kRunMicrotasks); // Use node::MakeCallback to call the callback, and it will also run pending // tasks in Node.js. - v8::MaybeLocal ret = node::MakeCallback(isolate, obj, method, args->size(), &args->front(), - {0, 0}); + v8::MaybeLocal ret = node::MakeCallback(isolate, obj, method, + args->size(), + &args->front(), {0, 0}); if (ret.IsEmpty()) { return v8::Boolean::New(isolate, false); }