Skip to content

Commit

Permalink
src: Modified to use 2 space for indentation.
Browse files Browse the repository at this point in the history
used 2 spaces instead of 4 for indentation

Fixes: nodejs#27211
Refs: https://v8docs.nodesource.com/node-4.8/annotated.html
  • Loading branch information
devasci authored and addaleax committed Aug 20, 2019
1 parent 7db9f03 commit 6ae79f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node_env_var.cc
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ Local<String> RealEnvStore::Get(Isolate* isolate,
String::NewFromUtf8(isolate, val, NewStringType::kNormal);

if (value_string.IsEmpty()) {
isolate->ThrowException(ERR_STRING_TOO_LONG(isolate));
return Local<String>();
isolate->ThrowException(ERR_STRING_TOO_LONG(isolate));
return Local<String>();
}

if (nullptr != val) free(val);
Expand Down

0 comments on commit 6ae79f7

Please sign in to comment.