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:
Ed Maste 2016-09-15 02:48:56 +00:00
parent 6d9f0e4d70
commit 6c6e388929
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=305823

View File

@ -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");
}
/*