diff options
author | Mark Whitley <markw@lineo.com> | 2000-08-02 18:34:41 +0000 |
---|---|---|
committer | Mark Whitley <markw@lineo.com> | 2000-08-02 18:34:41 +0000 |
commit | 5ae166813f8a6db9784e75c9b3843e1e30a7465f (patch) | |
tree | 385e9c8d01bdf449daf5a199f1df3bdbdccf0069 /coreutils | |
parent | 807f0fd637ecc25e60c81e41ad969c177c7df327 (diff) | |
download | busybox-5ae166813f8a6db9784e75c9b3843e1e30a7465f.tar.gz |
Minor cleanup thingy. fprintf(stderr, ...) -> errorMsg().
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/cut.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/coreutils/cut.c b/coreutils/cut.c index e90a0e2e9..fec52d3d4 100644 --- a/coreutils/cut.c +++ b/coreutils/cut.c @@ -220,8 +220,7 @@ extern int cut_main(int argc, char **argv) for (i = optind; i < argc; i++) { file = fopen(argv[i], "r"); if (file == NULL) { - /* errorMsg("%s: %s\n", argv[i], strerror(errno)); */ - fprintf(stderr, "%s: %s\n", argv[i], strerror(errno)); + errorMsg("%s: %s\n", argv[i], strerror(errno)); } else { cut_file(file); fclose(file); |