diff options
author | Denis Vlasenko | 2006-10-26 23:25:17 +0000 |
---|---|---|
committer | Denis Vlasenko | 2006-10-26 23:25:17 +0000 |
commit | ddec5af6b0803c7434a1cc2fdee5cb9873fe6bd0 (patch) | |
tree | f4f2aa58fa669aed6e2c50bb7aa648a79ec1873d /coreutils/fold.c | |
parent | f0ed376eda5d5c25d270e5100a881fb2d801bee6 (diff) | |
download | busybox-ddec5af6b0803c7434a1cc2fdee5cb9873fe6bd0.zip busybox-ddec5af6b0803c7434a1cc2fdee5cb9873fe6bd0.tar.gz |
rename functions to more understandable names
Diffstat (limited to 'coreutils/fold.c')
-rw-r--r-- | coreutils/fold.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/fold.c b/coreutils/fold.c index e33be55..9ca693d 100644 --- a/coreutils/fold.c +++ b/coreutils/fold.c @@ -70,7 +70,7 @@ int fold_main(int argc, char **argv) } do { - FILE *istream = bb_wfopen_input(*argv); + FILE *istream = fopen_or_warn_stdin(*argv); int c; int column = 0; /* Screen column where next char will go. */ int offset_out = 0; /* Index in `line_out' for next char. */ @@ -144,7 +144,7 @@ rescan: fwrite(line_out, sizeof(char), (size_t) offset_out, stdout); } - if (ferror(istream) || bb_fclose_nonstdin(istream)) { + if (ferror(istream) || fclose_if_not_stdin(istream)) { bb_perror_msg("%s", *argv); /* Avoid multibyte problems. */ errs |= EXIT_FAILURE; } |