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>
This commit is contained in:
David Sterba
2008-04-22 15:09:22 +02:00
committed by Linus Torvalds
parent e199ceee15
commit 16abef0e9e
2 changed files with 4 additions and 4 deletions

View File

@@ -239,7 +239,7 @@ Eoverflow:
loff_t seq_lseek(struct file *file, loff_t offset, int origin)
{
struct seq_file *m = (struct seq_file *)file->private_data;
long long retval = -EINVAL;
loff_t retval = -EINVAL;
mutex_lock(&m->lock);
m->version = file->f_version;