Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
src: fix typo rval to value
rval never existed, it was added as that in 077f9d7

Fixes: #9001
  • Loading branch information
maasencioh committed Oct 11, 2016
commit 2153f662a1889d5ce4b2866983f7326fdb267ed3
2 changes: 1 addition & 1 deletion src/node.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2711,7 +2711,7 @@ static void EnvSetter(Local<String> property,
SetEnvironmentVariableW(key_ptr, reinterpret_cast<WCHAR*>(*val));
}
#endif
// Whether it worked or not, always return rval.
// Whether it worked or not, always return value.
info.GetReturnValue().Set(value);
}

Expand Down