From e46c83b30b4dcf9d0e38803c8ee8cc58c915f9d7 Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Mon, 17 Sep 2007 16:00:45 +0200 Subject: inotail.c: Fix initialization of blksize --- inotail.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'inotail.c') diff --git a/inotail.c b/inotail.c index e6ad90d..2676176 100644 --- a/inotail.c +++ b/inotail.c @@ -94,7 +94,7 @@ static inline void setup_file(struct file_struct *f) { f->fd = f->i_watch = -1; f->size = 0; - f->blksize = DEFAULT_BUFFER_SIZE; + f->blksize = BUFFER_SIZE; f->ignore = 0; } -- cgit v1.2.3-54-g00ecf