seq-file: use SEEK_ macros instead of hardcoded numbers
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
diff --git a/fs/seq_file.c b/fs/seq_file.c
index f2bc3df..11ba056 100644
--- a/fs/seq_file.c
+++ b/fs/seq_file.c
@@ -308,9 +308,9 @@
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;