summaryrefslogtreecommitdiff
path: root/findutils
diff options
context:
space:
mode:
Diffstat (limited to 'findutils')
-rw-r--r--findutils/xargs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c
index e7cc7c379..029d4077d 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -431,7 +431,7 @@ int xargs_main(int argc, char **argv)
431 n_chars += strlen(*argv) + 1; 431 n_chars += strlen(*argv) + 1;
432 } 432 }
433 if (n_max_chars < n_chars) { 433 if (n_max_chars < n_chars) {
434 bb_error_msg_and_die("can not fit single argument within argument list size limit"); 434 bb_error_msg_and_die("cannot fit single argument within argument list size limit");
435 } 435 }
436 n_max_chars -= n_chars; 436 n_max_chars -= n_chars;
437 } else { 437 } else {