Trailing whitespace.
authorMikhail Glushenkov <foldr@codedgers.com>
Thu, 28 Oct 2010 19:32:53 +0000 (19:32 +0000)
committerMikhail Glushenkov <foldr@codedgers.com>
Thu, 28 Oct 2010 19:32:53 +0000 (19:32 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@117581 91177308-0d34-0410-b5e6-96231b3b80d8

lib/System/Unix/Program.inc

index bbb029c4f3ecb6059ce6cc62cd74b5d47f724f1c..110a6d14f48673de8f63e5eed64168f8009c4336 100644 (file)
@@ -196,7 +196,7 @@ Program::Execute(const Path &path, const char **args, const char **envp,
           *redirects[1] != *redirects[2]) {
         // Just redirect stderr
         if (RedirectIO_PS(redirects[2], 2, ErrMsg, FileActions)) return false;
-      } else {       
+      } else {
         // If stdout and stderr should go to the same place, redirect stderr
         // to the FD already open for stdout.
         if (int Err = posix_spawn_file_actions_adddup2(&FileActions, 1, 2))
@@ -217,17 +217,17 @@ Program::Execute(const Path &path, const char **args, const char **envp,
     pid_t PID = 0;
     int Err = posix_spawn(&PID, path.c_str(), &FileActions, /*attrp*/0,
                           const_cast<char **>(args), const_cast<char **>(envp));
-                          
+
     posix_spawn_file_actions_destroy(&FileActions);
 
     if (Err)
      return !MakeErrMsg(ErrMsg, "posix_spawn failed", Err);
-      
+
     Data_ = reinterpret_cast<void*>(PID);
     return true;
   }
 #endif
-  
+
   if (!path.canExecute()) {
     if (ErrMsg)
       *ErrMsg = path.str() + " is not executable";