X-Git-Url: http://git.monstr.eu/?a=blobdiff_plain;f=fs%2Fseq_file.c;h=abe27ec431766f9ae05cd0b87c6acf3f680f2981;hb=4571577f16c82f8db8133b228cdca5fd61042c77;hp=1dea7a8a52550e234ce3c05565ad8cfa56eeb1f2;hpb=d8938c981f58ee344687b7910a611ac345960045;p=linux-2.6-microblaze.git diff --git a/fs/seq_file.c b/fs/seq_file.c index 1dea7a8a5255..abe27ec43176 100644 --- a/fs/seq_file.c +++ b/fs/seq_file.c @@ -317,6 +317,7 @@ loff_t seq_lseek(struct file *file, loff_t offset, int whence) switch (whence) { case SEEK_CUR: offset += file->f_pos; + /* fall through */ case SEEK_SET: if (offset < 0) break;