Skip to content

Commit 3eada26

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 <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>
1 parent 1c8caa8 commit 3eada26

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
@@ -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)