aboutsummaryrefslogtreecommitdiff
path: root/coreutils/split.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/split.c')
-rw-r--r--coreutils/split.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/split.c b/coreutils/split.c
index 2306789f0..39f62e6dd 100644
--- a/coreutils/split.c
+++ b/coreutils/split.c
@@ -98,7 +98,7 @@ int split_main(int argc ATTRIBUTE_UNUSED, char **argv)
98 } 98 }
99 99
100 while (1) { 100 while (1) {
101 bytes_read = safe_read(0, read_buffer, READ_BUFFER_SIZE); 101 bytes_read = safe_read(STDIN_FILENO, read_buffer, READ_BUFFER_SIZE);
102 if (!bytes_read) 102 if (!bytes_read)
103 break; 103 break;
104 if (bytes_read < 0) 104 if (bytes_read < 0)
@@ -130,7 +130,7 @@ int split_main(int argc ATTRIBUTE_UNUSED, char **argv)
130 } 130 }
131 } 131 }
132 132
133 xwrite(1, src, to_write); 133 xwrite(STDOUT_FILENO, src, to_write);
134 bytes_read -= to_write; 134 bytes_read -= to_write;
135 src += to_write; 135 src += to_write;
136 } while (bytes_read); 136 } while (bytes_read);