From 042434f9af2f1b2a5687cd8f492db312c34e9f5b Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Wed, 14 Mar 2018 08:10:59 +0100 Subject: [PATCH] src: fix indenting of wrap->EmitTraceEventBefore PR-URL: https://github.com/nodejs/node/pull/19340 Reviewed-By: James M Snell --- src/async_wrap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/async_wrap.cc b/src/async_wrap.cc index c5b3e48b8104b5..5eda1d4b35e66e 100644 --- a/src/async_wrap.cc +++ b/src/async_wrap.cc @@ -338,7 +338,7 @@ static void PromiseHook(PromiseHookType type, Local promise, if (type == PromiseHookType::kBefore) { env->async_hooks()->push_async_ids( wrap->get_async_id(), wrap->get_trigger_async_id()); - wrap->EmitTraceEventBefore(); + wrap->EmitTraceEventBefore(); AsyncWrap::EmitBefore(wrap->env(), wrap->get_async_id()); } else if (type == PromiseHookType::kAfter) { wrap->EmitTraceEventAfter();