diff options
Diffstat (limited to 'tools/makeparallel/makeparallel.cpp')
| -rw-r--r-- | tools/makeparallel/makeparallel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/makeparallel/makeparallel.cpp b/tools/makeparallel/makeparallel.cpp index 576fe8df8f..cf125faa3a 100644 --- a/tools/makeparallel/makeparallel.cpp +++ b/tools/makeparallel/makeparallel.cpp @@ -343,7 +343,7 @@ int main(int argc, char* argv[]) { // child int ret = execvp(path, args.data()); if (ret < 0) { - error(errno, errno, "exec failed"); + error(errno, errno, "exec %s failed", path); } abort(); } |