From b2f2afad291c9e59f63c433ded3102cc198ec752 Mon Sep 17 00:00:00 2001 From: David Nadlinger Date: Fri, 7 Jun 2013 03:15:14 +0200 Subject: [PATCH] LDMD: Made error message on compiler execution error clearer. It is also triggered when the compiler exits with a signal, etc. --- driver/ldmd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/driver/ldmd.cpp b/driver/ldmd.cpp index 310ec784..d02680c9 100644 --- a/driver/ldmd.cpp +++ b/driver/ldmd.cpp @@ -131,7 +131,7 @@ int execute(ls::Path exePath, const char** args) 0, 0, &errorMsg); if (!errorMsg.empty()) { - error("Could not execute %s: %s", exePath.c_str(), errorMsg.c_str()); + error("Error executing %s: %s", exePath.c_str(), errorMsg.c_str()); } return rc; }