[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1358856081-25352-1-git-send-email-gorcunov@gmail.com>
Date: Tue, 22 Jan 2013 16:01:21 +0400
From: Cyrill Gorcunov <gorcunov@...il.com>
To: linux-fsdevel@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, Cyrill Gorcunov <gorcunov@...nvz.org>
Subject: [PATCH] seq-file: Use SEEK_ macros instead of hardcoded numbers
From: Cyrill Gorcunov <gorcunov@...nvz.org>
Signed-off-by: Cyrill Gorcunov <gorcunov@...nvz.org>
---
fs/seq_file.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
Index: linux-2.6.git/fs/seq_file.c
===================================================================
--- linux-2.6.git.orig/fs/seq_file.c
+++ linux-2.6.git/fs/seq_file.c
@@ -308,9 +308,9 @@ loff_t seq_lseek(struct file *file, loff
mutex_lock(&m->lock);
m->version = file->f_version;
switch (whence) {
- case 1:
+ case SEEK_CUR:
offset += file->f_pos;
- case 0:
+ case SEEK_SET:
if (offset < 0)
break;
retval = offset;
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists