Skip to content

Commit

Permalink
src: fix typo rval to value
Browse files Browse the repository at this point in the history
rval never existed, it was added as that in 077f9d7

Fixes: nodejs#9001
  • Loading branch information
maasencioh committed Oct 11, 2016
1 parent 6de9d13 commit 2153f66
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 2153f66

Please sign in to comment.