Run clang-format
diff --git a/src/command.h b/src/command.h
index a0dc201..fb1ade3 100644
--- a/src/command.h
+++ b/src/command.h
@@ -25,7 +25,8 @@
 class Evaluator;
 
 struct Command {
-  explicit Command(Symbol o) : output(o), echo(true), ignore_error(false), force_no_subshell(false) {}
+  explicit Command(Symbol o)
+      : output(o), echo(true), ignore_error(false), force_no_subshell(false) {}
   Symbol output;
   string cmd;
   bool echo;
diff --git a/src/ninja.cc b/src/ninja.cc
index 8b6d215..11d713f 100644
--- a/src/ninja.cc
+++ b/src/ninja.cc
@@ -414,7 +414,8 @@
       while (isspace(*in))
         in++;
 
-      bool needs_subshell = (command_count > 1 || c.ignore_error) && !c.force_no_subshell;
+      bool needs_subshell =
+          (command_count > 1 || c.ignore_error) && !c.force_no_subshell;
 
       if (needs_subshell)
         *cmd_buf += '(';