diff options
Diffstat (limited to 'coreutils/split.c')
-rw-r--r-- | coreutils/split.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/split.c b/coreutils/split.c index c1e4cea..ecbc9d2 100644 --- a/coreutils/split.c +++ b/coreutils/split.c @@ -127,7 +127,7 @@ int split_main(int argc UNUSED_PARAM, char **argv) } if (NAME_MAX < strlen(sfx) + suffix_len) - bb_error_msg_and_die("suffix too long"); + bb_simple_error_msg_and_die("suffix too long"); { char *char_p = xzalloc(suffix_len + 1); @@ -147,7 +147,7 @@ int split_main(int argc UNUSED_PARAM, char **argv) do { if (!remaining) { if (!pfx) - bb_error_msg_and_die("suffixes exhausted"); + bb_simple_error_msg_and_die("suffixes exhausted"); xmove_fd(xopen(pfx, O_WRONLY | O_CREAT | O_TRUNC), 1); pfx = next_file(pfx, suffix_len); remaining = cnt; |