diff options
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; |