Browse Source

Fix process.platform

v0.7.4-release
Ryan Dahl 14 years ago
parent
commit
3770462ee3
  1. 2
      src/node.cc

2
src/node.cc

@ -1684,7 +1684,7 @@ static void Load(int argc, char *argv[]) {
// process.platform // process.platform
process->Set(String::NewSymbol("platform"), String::New("PLATFORM")); process->Set(String::NewSymbol("platform"), String::New(PLATFORM));
// process.argv // process.argv
Local<Array> arguments = Array::New(argc - option_end_index + 1); Local<Array> arguments = Array::New(argc - option_end_index + 1);

Loading…
Cancel
Save