Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
  • Loading branch information
aqrln committed Jan 21, 2017
commit 360b86081fd7228d06d74bcade75d053adc9c58e
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