xargs: Fix comma splice in error message.
Reported by: bde
This commit is contained in:
parent
e7af90ab00
commit
c15adc89b3
@ -609,10 +609,10 @@ waitchildren(const char *name, int waitall)
|
||||
* exit 1-125.
|
||||
*/
|
||||
if (WIFSIGNALED(status))
|
||||
errx(1, "%s: terminated with signal %d, aborting",
|
||||
errx(1, "%s: terminated with signal %d; aborting",
|
||||
name, WTERMSIG(status));
|
||||
if (WEXITSTATUS(status) == 255)
|
||||
errx(1, "%s: exited with status 255, aborting", name);
|
||||
errx(1, "%s: exited with status 255; aborting", name);
|
||||
if (WEXITSTATUS(status))
|
||||
rval = 1;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user