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>
This commit is contained in:
Alexey Orlenko 2017-01-21 06:40:49 +02:00 committed by James M Snell
parent 0345d0d645
commit c8c79b937f

View File

@ -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));