From e272915e1ffd6978ef3555ce4ae1798a9fbcee56 Mon Sep 17 00:00:00 2001 From: Erik Andersen Date: Fri, 18 Feb 2000 21:34:17 +0000 Subject: Some updates for the day, -Erik --- coreutils/tail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'coreutils') diff --git a/coreutils/tail.c b/coreutils/tail.c index 821244f9e..5e05fe8e7 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c @@ -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); -- cgit v1.2.3