Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2000-07-19 21:36:27 +0400
committerEric Andersen <andersen@codepoet.org>2000-07-19 21:36:27 +0400
commita16c66335e24009c4cbcd57ce8205b4dfc7b099c (patch)
tree473d8971338e0fde2a9ba8bd627e79b476a85ccd /coreutils
parentae6eae02dd85a196a4545376a50166aede8ce7c1 (diff)
Use FatalError()
-Erik
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/wc.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/coreutils/wc.c b/coreutils/wc.c
index 058444d89..d1e05ae37 100644
--- a/coreutils/wc.c
+++ b/coreutils/wc.c
@@ -136,16 +136,14 @@ int wc_main(int argc, char **argv)
} else if (argc == 1) {
file = fopen(*argv, "r");
if (file == NULL) {
- perror(*argv);
- exit(FALSE);
+ fatalError(*argv);
}
wc_file(file, *argv);
} else {
while (argc-- > 0) {
file = fopen(*argv, "r");
if (file == NULL) {
- perror(*argv);
- exit(FALSE);
+ fatalError(*argv);
}
wc_file(file, *argv);
argv++;