diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2007-09-17 16:00:45 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2007-09-17 16:00:45 +0200 |
commit | e46c83b30b4dcf9d0e38803c8ee8cc58c915f9d7 (patch) | |
tree | f6c6219f78d6ae1055588fbf1024c7d3b8eeb82b | |
parent | 2448f8eca1b840e57d89f8ab5dd72332a3b4bf86 (diff) |
inotail.c: Fix initialization of blksize
-rw-r--r-- | inotail.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |