summaryrefslogtreecommitdiff
path: root/fs/ext2/super.c
diff options
context:
space:
mode:
authorRong Tao <rongtao@cestc.cn>2022-11-28 15:05:49 +0300
committerJan Kara <jack@suse.cz>2022-11-28 17:01:48 +0300
commitb41b98e12a954c306e8eb9527ada0a70db339683 (patch)
treed3d8239ad1bd9423ae7f80f862bcacf71846381f /fs/ext2/super.c
parent27e714c007e4ad01837bf0fac5c11913a38d7695 (diff)
downloadlinux-b41b98e12a954c306e8eb9527ada0a70db339683.tar.xz
fs/ext2: Fix code indentation
ts=4 can cause misunderstanding in code reading. It is better to replace 8 spaces with one tab. Signed-off-by: Rong Tao <rongtao@cestc.cn> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'fs/ext2/super.c')
-rw-r--r--fs/ext2/super.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/ext2/super.c b/fs/ext2/super.c
index 03f2af98b1b4..69c88facfe90 100644
--- a/fs/ext2/super.c
+++ b/fs/ext2/super.c
@@ -1648,7 +1648,7 @@ static int __init init_ext2_fs(void)
err = init_inodecache();
if (err)
return err;
- err = register_filesystem(&ext2_fs_type);
+ err = register_filesystem(&ext2_fs_type);
if (err)
goto out;
return 0;