From f669a08b7662016e3573eeac6998681ec62ae67c Mon Sep 17 00:00:00 2001 From: Miguel Angel Asencio Hurtado Date: Tue, 11 Oct 2016 10:19:16 +0200 Subject: [PATCH] src: fix typo rval to value MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit rval never existed, it was added as that in 077f9d7293468ad5446b330999fe47bc40e47571 Fixes: https://github.com/nodejs/node/issues/9001 PR-URL: https://github.com/nodejs/node/pull/9023 Reviewed-By: James M Snell Reviewed-By: Sakthipriyan Vairamani Reviewed-By: Colin Ihrig Reviewed-By: Michaƫl Zasso Reviewed-By: Luigi Pinca Reviewed-By: Anna Henningsen Reviewed-By: Franziska Hinkelmann --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index 0501372490188c..155d1cdcd2005e 100644 --- a/src/node.cc +++ b/src/node.cc @@ -2544,7 +2544,7 @@ static void EnvSetter(Local property, SetEnvironmentVariableW(key_ptr, reinterpret_cast(*val)); } #endif - // Whether it worked or not, always return rval. + // Whether it worked or not, always return value. info.GetReturnValue().Set(value); }