fs: use loff_t type instead of long long
[linux-2.6-block.git] / fs / seq_file.c
index 853770274f200ae36b49929b2afe55368ec1c047..9943408b315efe07b413af396269cca2e3630f22 100644 (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;