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 <[email protected]>
Reviewed-By: Michal Zasso <[email protected]>
Reviewed-By: Colin Ihrig <[email protected]>
Reviewed-By: James M Snell <[email protected]>
  • Loading branch information
aqrln authored and MylesBorins committed Mar 9, 2017
1 parent 9c53e40 commit 90d8e11
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 @@ -67,7 +67,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 90d8e11

Please sign in to comment.