diff options
author | Eric Andersen <andersen@codepoet.org> | 1999-10-20 08:05:35 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 1999-10-20 08:05:35 +0000 |
commit | ef8b6c757de9684f5d88eff4b014527e87121137 (patch) | |
tree | 49e5f39927e29db251956440dc4338572ecd75e3 /util-linux/more.c | |
parent | ce8f3b99339fb954204329971ed25efc950fed26 (diff) | |
download | busybox-w32-ef8b6c757de9684f5d88eff4b014527e87121137.tar.gz busybox-w32-ef8b6c757de9684f5d88eff4b014527e87121137.tar.bz2 busybox-w32-ef8b6c757de9684f5d88eff4b014527e87121137.zip |
Add a trivial ps command.
Diffstat (limited to 'util-linux/more.c')
-rw-r--r-- | util-linux/more.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util-linux/more.c b/util-linux/more.c index 745ae2bc4..72d58a6f4 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -79,7 +79,7 @@ extern int more_main(int argc, char **argv) | |||
79 | file = fopen(*argv, "r"); | 79 | file = fopen(*argv, "r"); |
80 | 80 | ||
81 | if (file == NULL) { | 81 | if (file == NULL) { |
82 | perror("Can't open file"); | 82 | perror(*argv); |
83 | exit(FALSE); | 83 | exit(FALSE); |
84 | } | 84 | } |
85 | fstat(fileno(file), &st); | 85 | fstat(fileno(file), &st); |