diff --git a/usr.bin/xargs/xargs.c b/usr.bin/xargs/xargs.c index 790eea600259..06c8736908f8 100644 --- a/usr.bin/xargs/xargs.c +++ b/usr.bin/xargs/xargs.c @@ -283,7 +283,7 @@ arg1: if (insingle || indouble) curlen++; /* * Allocate enough to hold what we will - * be holding in a secont, and to append + * be holding in a second, and to append * a space next time through, if we have * to. */ @@ -305,7 +305,8 @@ arg1: if (insingle || indouble) * of input lines, as specified by -L is the same as * maxing out on arguments. */ - if (xp == exp || p > ebp || ch == EOF || (Lflag <= count && xflag) || foundeof) { + if (xp == exp || p > ebp || ch == EOF || + (Lflag <= count && xflag) || foundeof) { if (xflag && xp != exp && p > ebp) errx(1, "insufficient space for arguments"); if (jfound) {