summaryrefslogtreecommitdiff
path: root/src/node_os.cc
diff options
context:
space:
mode:
authorAlexey Orlenko <eaglexrlnk@gmail.com>2017-01-21 06:40:49 +0200
committerJames M Snell <jasnell@gmail.com>2017-01-23 09:33:31 -0800
commitc8c79b937fedff0d5864be079b30c2784ef3d158 (patch)
tree8a55b1d1332b268953cf9bb94f0bf24fb38d41e0 /src/node_os.cc
parent0345d0d64592bd0e462577872eeb372cbed36ac4 (diff)
downloadandroid-node-v8-c8c79b937fedff0d5864be079b30c2784ef3d158.tar.gz
android-node-v8-c8c79b937fedff0d5864be079b30c2784ef3d158.tar.bz2
android-node-v8-c8c79b937fedff0d5864be079b30c2784ef3d158.zip
src: add a missing space in node_os.cc
This commit makes a small stylistic fix adding a missing space in GetOSType function in node_os.cc PR-URL: https://github.com/nodejs/node/pull/10931 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Michal Zasso <targos@protonmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'src/node_os.cc')
-rw-r--r--src/node_os.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_os.cc b/src/node_os.cc
index f8b53e45d8..97b1a1d08d 100644
--- a/src/node_os.cc
+++ b/src/node_os.cc
@@ -69,7 +69,7 @@ static void GetOSType(const FunctionCallbackInfo<Value>& args) {
}
rval = info.sysname;
#else // __MINGW32__
- rval ="Windows_NT";
+ rval = "Windows_NT";
#endif // __POSIX__
args.GetReturnValue().Set(OneByteString(env->isolate(), rval));