summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--inotail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/inotail.c b/inotail.c
index e0ed410..3a4bc1a 100644
--- a/inotail.c
+++ b/inotail.c
@@ -222,7 +222,7 @@ static ssize_t tail_pipe(struct file_struct *f)
/* We will just tail everything here */
while ((rc = read(f->fd, buf, BUFFER_SIZE)) > 0) {
- if (write(STDOUT_FILENO, buf, (size_t) rc) < 0) {
+ if (write(STDOUT_FILENO, buf, (size_t) rc) <= 0) {
/* e.g. when writing to a pipe which gets closed */
fprintf(stderr, "Error: Could not write to stdout (%s)\n", strerror(errno));
return -1;