diff options
Diffstat (limited to 'coreutils/tail.c')
-rw-r--r-- | coreutils/tail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c index 48abc4b..e63406e 100644 --- a/coreutils/tail.c +++ b/coreutils/tail.c @@ -70,7 +70,7 @@ static ssize_t tail_read(int fd, char *buf, size_t count) end = sbuf.st_size; lseek(fd, end < current ? 0 : current, SEEK_SET); if ((r = safe_read(fd, buf, count)) < 0) { - bb_perror_msg("read"); + bb_perror_msg(bb_msg_read_error); status = EXIT_FAILURE; } |