diff mbox series

btrfs: fix smatch warning inconsistent indenting

Message ID 6f864e83bae41e8d7fa9aad379ab6a68a15d7b26.1734407232.git.anand.jain@oracle.com (mailing list archive)
State New
Headers show
Series btrfs: fix smatch warning inconsistent indenting | expand

Commit Message

Anand Jain Dec. 17, 2024, 3:53 a.m. UTC
Corrects indentation warning reported by smatch.
Fixes:
   [PATCH v4 9/9] btrfs: modload to print RAID1 balancing status
in the ML, for the fixup in it.

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202412170215.uLhijGQD-lkp@intel.com/
Signed-off-by: Anand Jain <anand.jain@oracle.com>
---
This patch should be rolled into the mentioned patch.

 fs/btrfs/super.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/fs/btrfs/super.c b/fs/btrfs/super.c
index 573e8e1a2b24..236eec7c19cf 100644
--- a/fs/btrfs/super.c
+++ b/fs/btrfs/super.c
@@ -2488,7 +2488,7 @@  static int __init btrfs_print_mod_info(void)
 		pr_info("Btrfs loaded%s, raid1_balancing=%s\n",
 			 options, btrfs_get_raid1_balancing());
 #else
-		pr_info("Btrfs loaded%s\n", options);
+	pr_info("Btrfs loaded%s\n", options);
 #endif
 
 	return 0;