From 0c0334f7a4e6960c8e8ac37f8a202f4e4edd7c46 Mon Sep 17 00:00:00 2001 From: Alexey Orlenko Date: Sat, 21 Jan 2017 06:40:49 +0200 Subject: [PATCH] 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: https://github.com/nodejs/node/pull/10931 Reviewed-By: Anna Henningsen Reviewed-By: Michal Zasso Reviewed-By: Colin Ihrig Reviewed-By: James M Snell --- src/node_os.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_os.cc b/src/node_os.cc index f8b53e45d8e669..97b1a1d08da6ed 100644 --- a/src/node_os.cc +++ b/src/node_os.cc @@ -69,7 +69,7 @@ static void GetOSType(const FunctionCallbackInfo& args) { } rval = info.sysname; #else // __MINGW32__ - rval ="Windows_NT"; + rval = "Windows_NT"; #endif // __POSIX__ args.GetReturnValue().Set(OneByteString(env->isolate(), rval));