diff options
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 f68292e80..85209ce61 100644 --- a/util-linux/more.c +++ b/util-linux/more.c | |||
@@ -81,7 +81,7 @@ int more_main(int argc, char **argv) | |||
81 | if (argc == 0) { | 81 | if (argc == 0) { |
82 | file = stdin; | 82 | file = stdin; |
83 | } else | 83 | } else |
84 | file = bb_wfopen(*argv, "r"); | 84 | file = fopen_or_warn(*argv, "r"); |
85 | if(file==0) | 85 | if(file==0) |
86 | goto loop; | 86 | goto loop; |
87 | 87 | ||