diff options
Diffstat (limited to 'findutils/xargs.c')
-rw-r--r-- | findutils/xargs.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/findutils/xargs.c b/findutils/xargs.c index 03eafd616..726315803 100644 --- a/findutils/xargs.c +++ b/findutils/xargs.c | |||
@@ -665,7 +665,7 @@ int xargs_main(int argc UNUSED_PARAM, char **argv) | |||
665 | } | 665 | } |
666 | /* Sanity check */ | 666 | /* Sanity check */ |
667 | if (n_max_chars <= 0) { | 667 | if (n_max_chars <= 0) { |
668 | bb_error_msg_and_die("can't fit single argument within argument list size limit"); | 668 | bb_simple_error_msg_and_die("can't fit single argument within argument list size limit"); |
669 | } | 669 | } |
670 | 670 | ||
671 | buf = xzalloc(n_max_chars + 1); | 671 | buf = xzalloc(n_max_chars + 1); |
@@ -716,7 +716,7 @@ int xargs_main(int argc UNUSED_PARAM, char **argv) | |||
716 | 716 | ||
717 | if (!G.args[initial_idx]) { /* not even one ARG was added? */ | 717 | if (!G.args[initial_idx]) { /* not even one ARG was added? */ |
718 | if (*rem != '\0') | 718 | if (*rem != '\0') |
719 | bb_error_msg_and_die("argument line too long"); | 719 | bb_simple_error_msg_and_die("argument line too long"); |
720 | if (opt & OPT_NO_EMPTY) | 720 | if (opt & OPT_NO_EMPTY) |
721 | break; | 721 | break; |
722 | } | 722 | } |