diff options
author | David Sterba <dsterba@suse.cz> | 2008-04-22 09:09:22 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-22 18:17:11 -0400 |
commit | 16abef0e9e79643827fd5a2a14a07bced851ae72 (patch) | |
tree | ff2648a70755154ee93ad2ad5b11014329158e66 /fs/seq_file.c | |
parent | e199ceee15c8f8652cc3bb97651bdf246ba23c5f (diff) |
fs: use loff_t type instead of long long
Use offset type consistently.
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/seq_file.c')
-rw-r--r-- | fs/seq_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/seq_file.c b/fs/seq_file.c index 853770274f20..9943408b315e 100644 --- a/fs/seq_file.c +++ b/fs/seq_file.c | |||
@@ -239,7 +239,7 @@ Eoverflow: | |||
239 | loff_t seq_lseek(struct file *file, loff_t offset, int origin) | 239 | loff_t seq_lseek(struct file *file, loff_t offset, int origin) |
240 | { | 240 | { |
241 | struct seq_file *m = (struct seq_file *)file->private_data; | 241 | struct seq_file *m = (struct seq_file *)file->private_data; |
242 | long long retval = -EINVAL; | 242 | loff_t retval = -EINVAL; |
243 | 243 | ||
244 | mutex_lock(&m->lock); | 244 | mutex_lock(&m->lock); |
245 | m->version = file->f_version; | 245 | m->version = file->f_version; |