Skip to content

Commit

Permalink
src: fix tab indent
Browse files Browse the repository at this point in the history
  • Loading branch information
tniessen committed Mar 18, 2021
1 parent b173956 commit 653293b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions napi-inl.h
Original file line number Diff line number Diff line change
Expand Up @@ -4148,10 +4148,9 @@ inline AsyncContext::AsyncContext(napi_env env, const char* resource_name)
}

inline AsyncContext::AsyncContext(napi_env env,
const char* resource_name,
const char* resource_name,
const Object& resource)
: _env(env),
_context(nullptr) {
: _env(env), _context(nullptr) {
napi_value resource_id;
napi_status status = napi_create_string_utf8(
_env, resource_name, NAPI_AUTO_LENGTH, &resource_id);
Expand Down

0 comments on commit 653293b

Please sign in to comment.