diff options
Diffstat (limited to 'tail.c')
-rw-r--r-- | tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -336,7 +336,7 @@ static int tail_file(const char *filename, off_t n_units) /* Not standard input. */ fd = open(filename, O_RDONLY); if (fd == -1) - fatalError("open error"); + perror(filename); errors = tail_lines(filename, fd, (long) n_units); close(fd); |