tail: syntax-only: use "false", rather than equivalent, 0
authorJim Meyering <meyering@redhat.com>
Mon, 7 Sep 2009 20:36:05 +0000 (22:36 +0200)
committerJim Meyering <meyering@redhat.com>
Mon, 7 Sep 2009 21:20:01 +0000 (23:20 +0200)
* src/tail.c (record_open_fd): Initialize "->ignore" to false, not 0.

src/tail.c

index d75d9b3..63874bb 100644 (file)
@@ -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.  */