summaryrefslogtreecommitdiffstats
path: root/usr.bin/tail
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/tail')
-rw-r--r--usr.bin/tail/forward.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/tail/forward.c b/usr.bin/tail/forward.c
index b9457af..dd75418 100644
--- a/usr.bin/tail/forward.c
+++ b/usr.bin/tail/forward.c
@@ -178,8 +178,8 @@ forward(fp, style, off, sbp)
break;
/* Sleep(3) is eight system calls. Do it fast. */
- second.tv_sec = 1;
- second.tv_usec = 0;
+ second.tv_sec = 0;
+ second.tv_usec = 250000;
if (select(0, NULL, NULL, NULL, &second) == -1)
if (errno != EINTR)
err(1, "select");
OpenPOWER on IntegriCloud