`clang-format -i -style=file *.cc *.h`

Change-Id: I62a87c5d8309b21265e904c0aeb9b3e094c9024a
diff --git a/fileutil.cc b/fileutil.cc
index 4cf653b..7ebb8ec 100644
--- a/fileutil.cc
+++ b/fileutil.cc
@@ -60,10 +60,12 @@
   return GetTimestampFromStat(st);
 }
 
-int RunCommand(const string& shell, const string& shellflag,
-               const string& cmd, RedirectStderr redirect_stderr,
+int RunCommand(const string& shell,
+               const string& shellflag,
+               const string& cmd,
+               RedirectStderr redirect_stderr,
                string* s) {
-  const char* argv[] = { NULL, NULL, NULL, NULL };
+  const char* argv[] = {NULL, NULL, NULL, NULL};
   string cmd_with_shell;
   if (shell[0] != '/' || shell.find_first_of(" $") != string::npos) {
     string cmd_escaped = cmd;
@@ -98,7 +100,7 @@
           PERROR("read failed");
         if (r == 0)
           break;
-        s->append(buf, buf+r);
+        s->append(buf, buf + r);
       }
 
       if (result != 0) {
@@ -156,9 +158,7 @@
 
 class GlobCache {
  public:
-  ~GlobCache() {
-    Clear();
-  }
+  ~GlobCache() { Clear(); }
 
   void Get(const char* pat, vector<string>** files) {
     auto p = cache_.emplace(pat, nullptr);