git: 6d777389e19d - main - xargs: Fix typo in error message.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 05 Jun 2023 16:11:53 UTC
The branch main has been updated by des: URL: https://cgit.FreeBSD.org/src/commit/?id=6d777389e19d3bebde515e88e8405de45d8af7bd commit 6d777389e19d3bebde515e88e8405de45d8af7bd Author: Dag-Erling Smørgrav <des@FreeBSD.org> AuthorDate: 2023-06-05 16:10:53 +0000 Commit: Dag-Erling Smørgrav <des@FreeBSD.org> CommitDate: 2023-06-05 16:11:44 +0000 xargs: Fix typo in error message. MFC after: 1 week Sponsored by: Klara, Inc. --- usr.bin/xargs/xargs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/xargs/xargs.c b/usr.bin/xargs/xargs.c index cadb0c76cc2f..eb496d8e09fe 100644 --- a/usr.bin/xargs/xargs.c +++ b/usr.bin/xargs/xargs.c @@ -526,7 +526,7 @@ prerun(int argc, char *argv[]) *tmp = *avj++; if (repls && strstr(*tmp, replstr) != NULL) { if (strnsubst(tmp++, replstr, inpline, (size_t)Sflag)) { - warnx("comamnd line cannot be assembled, too long"); + warnx("command line cannot be assembled, too long"); xexit(*argv, 1); } if (repls > 0)