sdiff: improve errx string
errx() appends a newline so \n is superfluous. Also switch to lower case with no period for consistency with other errx strings.
This commit is contained in:
parent
6d9f0e4d70
commit
6c6e388929
@ -488,7 +488,7 @@ binexec(char *diffprog, char *f1, char *f2)
|
||||
execv(diffprog, args);
|
||||
|
||||
/* If execv() fails, sdiff's execution will continue below. */
|
||||
errx(1, "Could not execute diff process.\n");
|
||||
errx(1, "could not execute diff process");
|
||||
}
|
||||
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user