2022-05-28 20:10:27

by Xiang wangx

[permalink] [raw]
Subject: [PATCH] ntfs: remove unnecessary returns

Void function return statements are not generally useful

Signed-off-by: Xiang wangx <[email protected]>
---
fs/ntfs/inode.c | 1 -
1 file changed, 1 deletion(-)

diff --git a/fs/ntfs/inode.c b/fs/ntfs/inode.c
index 4474adb393ca..b80bee4a8e5a 100644
--- a/fs/ntfs/inode.c
+++ b/fs/ntfs/inode.c
@@ -2277,7 +2277,6 @@ void ntfs_evict_big_inode(struct inode *vi)
BUG_ON(ni->page);
if (!atomic_dec_and_test(&ni->count))
BUG();
- return;
}

/**
--
2.36.1