Skip to content

Commit

Permalink
src: add a missing space in node_os.cc
Browse files Browse the repository at this point in the history
This commit makes a small stylistic fix adding a missing space in
GetOSType function in node_os.cc

PR-URL: #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>
  • Loading branch information
aqrln authored and italoacasas committed Jan 30, 2017
1 parent a114f63 commit 0c0334f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_os.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 0c0334f

Please sign in to comment.