s/fileno\(stdin\)/STDIN_FILENO/g

s/fileno\(stdout\)/STDOUT_FILENO/g
This commit is contained in:
Eric Andersen
2004-03-27 10:02:48 +00:00
parent edd580a088
commit 70060d25d2
21 changed files with 35 additions and 35 deletions

View File

@ -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);
}