From: Brian Gaeke Date: Wed, 15 Oct 2003 20:46:58 +0000 (+0000) Subject: Fix up error message. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=53e557d670b123adf954992fb8eeeef2118eb17d;p=oota-llvm.git Fix up error message. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9139 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/SystemUtils.cpp b/lib/Support/SystemUtils.cpp index e198c7ec063..e1af3f92cec 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;