From 3639a880aa9778bd6f30be4e953ad9b1171110a1 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Wed, 8 Jul 2009 19:51:22 +0200 Subject: tail: declare "file descriptor" variable to be "int", not size_t * src/tail.c (tail_forever_inotify): Use "int", not size_t as the type of a file descriptor variable. --- src/tail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/tail.c b/src/tail.c index b3ebba9d6..79c557636 100644 --- a/src/tail.c +++ b/src/tail.c @@ -1169,7 +1169,7 @@ tail_forever_inotify (int wd, struct File_spec *f, int n_files) Hash_table *wd_table; bool found_watchable = false; - size_t prev_wd; + int prev_wd; size_t evlen = 0; char *evbuf; size_t evbuf_off = 0; -- cgit v1.2.3-54-g00ecf