Some updates for the day,

-Erik
This commit is contained in:
Erik Andersen
2000-02-18 21:34:17 +00:00
parent bf5f009862
commit e272915e1f
19 changed files with 128 additions and 53 deletions

2
tail.c
View File

@@ -330,7 +330,7 @@ static int tail_file(const char *filename, off_t n_units)
/* Not standard input. */
fd = open(filename, O_RDONLY);
if (fd == -1)
errorMsg("open error");
fatalError("open error");
errors = tail_lines(filename, fd, (long) n_units);
close(fd);