From 3770462ee3531c10f53071169555008ff970528d Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Wed, 5 Jan 2011 19:05:59 -0800 Subject: [PATCH] Fix process.platform --- src/node.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node.cc b/src/node.cc index 5403933ef1..d23ee8adc2 100644 --- a/src/node.cc +++ b/src/node.cc @@ -1684,7 +1684,7 @@ static void Load(int argc, char *argv[]) { // process.platform - process->Set(String::NewSymbol("platform"), String::New("PLATFORM")); + process->Set(String::NewSymbol("platform"), String::New(PLATFORM)); // process.argv Local arguments = Array::New(argc - option_end_index + 1);