From: Jim Meyering Date: Mon, 7 Sep 2009 20:36:05 +0000 (+0200) Subject: tail: syntax-only: use "false", rather than equivalent, 0 X-Git-Tag: v7.6~10 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f6d1f70183709124afd67462c05f82bb8d116165;p=platform%2Fupstream%2Fcoreutils.git tail: syntax-only: use "false", rather than equivalent, 0 * src/tail.c (record_open_fd): Initialize "->ignore" to false, not 0. --- diff --git a/src/tail.c b/src/tail.c index d75d9b3..63874bb 100644 --- a/src/tail.c +++ b/src/tail.c @@ -358,7 +358,7 @@ record_open_fd (struct File_spec *f, int fd, f->mode = st->st_mode; f->blocking = blocking; f->n_unchanged_stats = 0; - f->ignore = 0; + f->ignore = false; } /* Close the file with descriptor FD and name FILENAME. */