diff mbox series

fs/btrfs/inode.c: Fixed an identation error

Message ID 20241015202215.10086-1-racz.zoli@gmail.com (mailing list archive)
State New
Headers show
Series fs/btrfs/inode.c: Fixed an identation error | expand

Commit Message

Racz Zoltan Oct. 15, 2024, 8:22 p.m. UTC
Fixed identation error

Signed-off-by: Racz Zoltan <racz.zoli@gmail.com>
---
 fs/btrfs/inode.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

David Sterba Oct. 15, 2024, 8:31 p.m. UTC | #1
On Tue, Oct 15, 2024 at 11:22:15PM +0300, Racz Zoltan wrote:
> Fixed identation error
> 
> Signed-off-by: Racz Zoltan <racz.zoli@gmail.com>

Sorry, we don't want pure whitespace change patches.

Explanation: https://btrfs.readthedocs.io/en/latest/dev/Developer-s-FAQ.html#how-not-to-start
diff mbox series

Patch

diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 5618ca02934a..9c737e63c339 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -4226,7 +4226,7 @@  static int __btrfs_unlink_inode(struct btrfs_trans_handle *trans,
 	inode_inc_iversion(&inode->vfs_inode);
 	inode_set_ctime_current(&inode->vfs_inode);
 	inode_inc_iversion(&dir->vfs_inode);
- 	inode_set_mtime_to_ts(&dir->vfs_inode, inode_set_ctime_current(&dir->vfs_inode));
+	inode_set_mtime_to_ts(&dir->vfs_inode, inode_set_ctime_current(&dir->vfs_inode));
 	ret = btrfs_update_inode(trans, dir);
 out:
 	return ret;