Skip to content

Commit

Permalink
reword error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sasha0552 authored Jul 25, 2024
1 parent e8f1bd8 commit 28dd1b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/common.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}

0 comments on commit 28dd1b1

Please sign in to comment.