diff options
author | Eric Andersen | 2004-03-27 10:02:48 +0000 |
---|---|---|
committer | Eric Andersen | 2004-03-27 10:02:48 +0000 |
commit | 70060d25d23278f6b636a535edca4a0c4006decd (patch) | |
tree | 372a280d63bab86ec9ffddc76ec28b27a7a1b3ee /libbb | |
parent | edd580a088fe67f33036d3732f66f917b1c0a80b (diff) | |
download | busybox-70060d25d23278f6b636a535edca4a0c4006decd.zip busybox-70060d25d23278f6b636a535edca4a0c4006decd.tar.gz |
s/fileno\(stdin\)/STDIN_FILENO/g
s/fileno\(stdout\)/STDOUT_FILENO/g
Diffstat (limited to 'libbb')
-rw-r--r-- | libbb/dump.c | 2 | ||||
-rw-r--r-- | libbb/print_file.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/libbb/dump.c b/libbb/dump.c index f169da6..52a6c06 100644 --- a/libbb/dump.c +++ b/libbb/dump.c @@ -311,7 +311,7 @@ static void do_skip(char *fname, int statok) struct stat sbuf; if (statok) { - if (fstat(fileno(stdin), &sbuf)) { + if (fstat(STDIN_FILENO, &sbuf)) { bb_perror_msg_and_die("%s", fname); } if ((!(S_ISCHR(sbuf.st_mode) || diff --git a/libbb/print_file.c b/libbb/print_file.c index bd7108d..8f85cb4 100644 --- a/libbb/print_file.c +++ b/libbb/print_file.c @@ -28,7 +28,7 @@ extern void bb_xprint_and_close_file(FILE *file) bb_xfflush_stdout(); /* Note: Do not use STDOUT_FILENO here, as this is a lib routine * and the calling code may have reassigned stdout. */ - if (bb_copyfd_eof(fileno(file), fileno(stdout)) == -1) { + if (bb_copyfd_eof(fileno(file), STDOUT_FILENO) == -1) { /* bb_copyfd outputs any needed messages, so just die. */ exit(bb_default_error_retval); } |