diff --git a/atom/common/api/event_emitter_caller.cc b/atom/common/api/event_emitter_caller.cc index e89e9d7533a..a3b454b8661 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 the JS function throws an exception (doesn't return a value) the result // of MakeCallback will be empty, in this case we need to return "false" as // that indicates that the event emitter did not handle the event