Indentation fix
authorisaacs <i@izs.me>
Mon, 30 Apr 2012 15:37:53 +0000 (08:37 -0700)
committerisaacs <i@izs.me>
Mon, 30 Apr 2012 20:09:31 +0000 (13:09 -0700)
src/process_wrap.cc

index 4a43437..4c9eb42 100644 (file)
@@ -163,9 +163,9 @@ class ProcessWrap : public HandleWrap {
     // options.cwd
     Local<Value> cwd_v = js_options->Get(String::NewSymbol("cwd"));
     String::Utf8Value cwd(cwd_v->IsString() ? cwd_v : Local<Value>());
-      if (cwd.length() > 0) {
+    if (cwd.length() > 0) {
       options.cwd = *cwd;
-      }
+    }
 
     // options.env
     Local<Value> env_v = js_options->Get(String::NewSymbol("envPairs"));