aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/tail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/tail.c b/coreutils/tail.c
index 48abc4b84..e63406e31 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)
70 end = sbuf.st_size; 70 end = sbuf.st_size;
71 lseek(fd, end < current ? 0 : current, SEEK_SET); 71 lseek(fd, end < current ? 0 : current, SEEK_SET);
72 if ((r = safe_read(fd, buf, count)) < 0) { 72 if ((r = safe_read(fd, buf, count)) < 0) {
73 bb_perror_msg("read"); 73 bb_perror_msg(bb_msg_read_error);
74 status = EXIT_FAILURE; 74 status = EXIT_FAILURE;
75 } 75 }
76 76