aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMikhail Glushenkov <foldr@codedgers.com>2010-10-28 19:32:53 +0000
committerMikhail Glushenkov <foldr@codedgers.com>2010-10-28 19:32:53 +0000
commit0e9d9b51ebfdc0a4575077b7f350712cde1e9e05 (patch)
tree1fed3d4eb0b430ae7147b3e4a0a32914c07248b2
parenta90bee3ee8f3c6986824b40c7ab667982ce33de0 (diff)
downloadllvm-0e9d9b51ebfdc0a4575077b7f350712cde1e9e05.zip
llvm-0e9d9b51ebfdc0a4575077b7f350712cde1e9e05.tar.gz
llvm-0e9d9b51ebfdc0a4575077b7f350712cde1e9e05.tar.bz2
Trailing whitespace.
llvm-svn: 117581
-rw-r--r--llvm/lib/System/Unix/Program.inc8
1 files changed, 4 insertions, 4 deletions
diff --git a/llvm/lib/System/Unix/Program.inc b/llvm/lib/System/Unix/Program.inc
index bbb029c..110a6d1 100644
--- a/llvm/lib/System/Unix/Program.inc
+++ b/llvm/lib/System/Unix/Program.inc
@@ -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";