Commit 5e62adef authored by Andrew Morton's avatar Andrew Morton Committed by Linus Torvalds

fs/seq_file.c:seq_lseek(): fix switch statement indenting

[akpm@linux-foundation.org: checkpatch fixes]
Cc: Cyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 80de7f7a
...@@ -315,7 +315,7 @@ loff_t seq_lseek(struct file *file, loff_t offset, int whence) ...@@ -315,7 +315,7 @@ loff_t seq_lseek(struct file *file, loff_t offset, int whence)
break; break;
retval = offset; retval = offset;
if (offset != m->read_pos) { if (offset != m->read_pos) {
while ((retval=traverse(m, offset)) == -EAGAIN) while ((retval = traverse(m, offset)) == -EAGAIN)
; ;
if (retval) { if (retval) {
/* with extreme prejudice... */ /* with extreme prejudice... */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment