From 5e25ddb7d369b6785ec3aaa96cbc0521c22aeb0d Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 19 May 2008 09:48:17 +0000 Subject: - use STD*_FILENO some more. No object-code changes --- coreutils/split.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'coreutils') 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) } while (1) { - bytes_read = safe_read(0, read_buffer, READ_BUFFER_SIZE); + bytes_read = safe_read(STDIN_FILENO, read_buffer, READ_BUFFER_SIZE); if (!bytes_read) break; if (bytes_read < 0) @@ -130,7 +130,7 @@ int split_main(int argc ATTRIBUTE_UNUSED, char **argv) } } - xwrite(1, src, to_write); + xwrite(STDOUT_FILENO, src, to_write); bytes_read -= to_write; src += to_write; } while (bytes_read); -- cgit v1.2.3