diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2007-09-07 13:52:16 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2007-09-07 13:52:16 +0200 |
commit | fa4c8b85b1d5966beeda6b8b28046eb45a63332d (patch) | |
tree | b636284376d94fe9e3c6ec18e547b154723271aa /inotail.h | |
parent | 80a71e08f368bde5add474dd7d9d497ecd835532 (diff) |
New upstream release v0.50.5-1
Diffstat (limited to 'inotail.h')
-rw-r--r-- | inotail.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,8 +19,8 @@ enum { M_LINES, M_BYTES }; struct file_struct { char *name; /* Name of file (or '-' for stdin) */ int fd; /* File descriptor (or -1 if file is not open */ - off_t st_size; /* File size */ - blksize_t st_blksize; /* Blocksize for filesystem I/O */ + off_t size; /* File size */ + blksize_t blksize; /* Blocksize for filesystem I/O */ unsigned ignore; /* Whether to ignore the file in further processing */ int i_watch; /* Inotify watch associated with file_struct */ }; |