summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTobias Klauser <tklauser@distanz.ch>2007-06-20 14:47:25 +0200
committerTobias Klauser <tklauser@xenon.tklauser.home>2007-06-20 14:47:25 +0200
commit8c6779184514c772319608110d520bae583e4887 (patch)
tree5aa53a4a978fb86a925ccd43ea07649060ca0beb
parent19699a5c202019e98c612eb1db28adb7588f78bd (diff)
inotail.c: Correct comment
-rw-r--r--inotail.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/inotail.c b/inotail.c
index 9000f46..8561054 100644
--- a/inotail.c
+++ b/inotail.c
@@ -295,7 +295,7 @@ static int tail_file(struct file_struct *f, unsigned long n_units, char mode, ch
return tail_pipe(f);
f->st_size = finfo.st_size;
- f->st_blksize = finfo.st_blksize; /* TODO: Can this value be 0 or negative? */
+ f->st_blksize = finfo.st_blksize; /* TODO: Can this value be 0? */
if (mode == M_LINES)
offset = lines_to_offset(f, n_units);