diff options
author | Sachin Prabhu | 2012-04-25 13:10:14 +0200 |
---|---|---|
committer | Steve French | 2012-05-02 05:19:43 +0200 |
commit | 156d17905e783d057061b3b56a9b3befec064e47 (patch) | |
tree | 83df60eb473d8b502e6f496cffdc67bc9ad2c55a /fs/cifs/cifsfs.c | |
parent | Merge tag 'ktest-for-v3.4-rc5' of git://git.kernel.org/pub/scm/linux/kernel/g... (diff) | |
download | kernel-qcow2-linux-156d17905e783d057061b3b56a9b3befec064e47.tar.gz kernel-qcow2-linux-156d17905e783d057061b3b56a9b3befec064e47.tar.xz kernel-qcow2-linux-156d17905e783d057061b3b56a9b3befec064e47.zip |
CIFS: Fix indentation in cifs_show_options
Trivial patch which fixes a misplaced tab in cifs_show_options().
Signed-off-by: Sachin Prabhu <sprabhu@redhat.com>
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/cifsfs.c')
-rw-r--r-- | fs/cifs/cifsfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/cifsfs.c b/fs/cifs/cifsfs.c index 811245b1ff2e..ca6a3796a33b 100644 --- a/fs/cifs/cifsfs.c +++ b/fs/cifs/cifsfs.c @@ -442,7 +442,7 @@ cifs_show_options(struct seq_file *s, struct dentry *root) seq_printf(s, ",rsize=%u", cifs_sb->rsize); seq_printf(s, ",wsize=%u", cifs_sb->wsize); /* convert actimeo and display it in seconds */ - seq_printf(s, ",actimeo=%lu", cifs_sb->actimeo / HZ); + seq_printf(s, ",actimeo=%lu", cifs_sb->actimeo / HZ); return 0; } |