diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-15 20:46:58 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2003-10-15 20:46:58 +0000 |
commit | 53e557d670b123adf954992fb8eeeef2118eb17d (patch) | |
tree | e67b11d4011f5b6a5ddd581db514ce43d3545080 /lib/Support/SystemUtils.cpp | |
parent | b6c3a88dc4c749e88fdd68368d74ccfb37d506a3 (diff) |
Fix up error message.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9139 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/SystemUtils.cpp')
-rw-r--r-- | lib/Support/SystemUtils.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/Support/SystemUtils.cpp b/lib/Support/SystemUtils.cpp index e198c7ec06..e1af3f92ce 100644 --- a/lib/Support/SystemUtils.cpp +++ b/lib/Support/SystemUtils.cpp @@ -125,9 +125,10 @@ int RunProgramWithTimeout(const std::string &ProgramPath, const char **Args, RedirectFD(StdErrFile, 2); execv(ProgramPath.c_str(), (char *const *)Args); - std::cerr << "Error executing program '" << ProgramPath; + std::cerr << "Error executing program: '" << ProgramPath; for (; *Args; ++Args) std::cerr << " " << *Args; + std::cerr << "'\n"; exit(1); default: break; |