[PATCH] seq-file: Use SEEK_ macros instead of hardcoded numbers

From: Cyrill Gorcunov
Date: Tue Jan 22 2013 - 07:01:18 EST


From: Cyrill Gorcunov <gorcunov@xxxxxxxxxx>

Signed-off-by: Cyrill Gorcunov <gorcunov@xxxxxxxxxx>
---
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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/