aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/split.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/coreutils/split.c b/coreutils/split.c
index c2f388501..7c9c0c1e4 100644
--- a/coreutils/split.c
+++ b/coreutils/split.c
@@ -82,9 +82,7 @@ int split_main(int argc UNUSED_PARAM, char **argv)
82 int fd; 82 int fd;
83 if (argv[1]) 83 if (argv[1])
84 sfx = argv[1]; 84 sfx = argv[1];
85 fd = open_or_warn_stdin(argv[0]); 85 fd = xopen_stdin(argv[0]);
86 if (fd == -1)
87 return EXIT_FAILURE;
88 xmove_fd(fd, STDIN_FILENO); 86 xmove_fd(fd, STDIN_FILENO);
89 } else { 87 } else {
90 argv[0] = (char *) bb_msg_standard_input; 88 argv[0] = (char *) bb_msg_standard_input;