From 16abef0e9e79643827fd5a2a14a07bced851ae72 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 22 Apr 2008 15:09:22 +0200 Subject: fs: use loff_t type instead of long long Use offset type consistently. Signed-off-by: David Sterba Signed-off-by: Linus Torvalds --- fs/seq_file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'fs/seq_file.c') diff --git a/fs/seq_file.c b/fs/seq_file.c index 853770274f2..9943408b315 100644 --- a/fs/seq_file.c +++ b/fs/seq_file.c @@ -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; -- cgit v1.2.3