Skip to content

Commit 0c0334f

Browse files
aqrlnitaloacasas
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 a114f63 commit 0c0334f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node_os.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ static void GetOSType(const FunctionCallbackInfo<Value>& args) {
6969
}
7070
rval = info.sysname;
7171
#else // __MINGW32__
72-
rval ="Windows_NT";
72+
rval = "Windows_NT";
7373
#endif // __POSIX__
7474

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

0 commit comments

Comments
 (0)