Skip to content

Commit 90d8e11

Browse files
aqrlnMylesBorins
authored andcommitted
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: #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]>
1 parent 9c53e40 commit 90d8e11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_os.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ static void GetOSType(const FunctionCallbackInfo<Value>& args) {
6767
}
6868
rval = info.sysname;
6969
#else // __MINGW32__
70-
rval ="Windows_NT";
70+
rval = "Windows_NT";
7171
#endif // __POSIX__
7272

7373
args.GetReturnValue().Set(OneByteString(env->isolate(), rval));

0 commit comments

Comments
 (0)