From 28dd1b1f08a4232d6e6a789649ffb0f3dca8de4b Mon Sep 17 00:00:00 2001 From: sasha0552 Date: Thu, 25 Jul 2024 12:29:31 +0000 Subject: [PATCH] reword error message --- common/common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.cpp b/common/common.cpp index a8d350be1..a075f5e37 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -3248,6 +3248,6 @@ void script_execute(const std::string & script) { int result = std::system(script.c_str()); if (result != 0) { - fprintf(stderr, "%s: error: unable to execute script '%s'. exit code: %d\n", __func__, script.c_str(), result); + fprintf(stderr, "%s: error: script '%s' failed with exit code %d\n", __func__, script.c_str(), result); } }