diff options
author | Pintu Kumar <quic_pintu@quicinc.com> | 2024-12-09 21:51:04 +0530 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2025-01-18 15:27:14 +0100 |
commit | 404de7abc05758254ad57d9501d30427d9c57417 (patch) | |
tree | 4477fb39dc6e01780d9e9c6f0b1ac970156ff964 /fs/ubifs | |
parent | 923d3583ead133da742b42d9debbb7d5c5a56587 (diff) |
ubifs: ubifs_dump_leb: remove return from end of void function
Noticed that there is a useless return statement at the end of void
function ubifs_dump_leb().
Just removed it.
Signed-off-by: Pintu Kumar <quic_pintu@quicinc.com>
Reviewed-by: Zhihao Cheng <chengzhihao1@huawei.com>
Signed-off-by: Richard Weinberger <richard@nod.at>
Diffstat (limited to 'fs/ubifs')
-rw-r--r-- | fs/ubifs/debug.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ubifs/debug.c b/fs/ubifs/debug.c index 5cc69beaa62e..987eb5b6782a 100644 --- a/fs/ubifs/debug.c +++ b/fs/ubifs/debug.c @@ -863,7 +863,6 @@ void ubifs_dump_leb(const struct ubifs_info *c, int lnum) out: vfree(buf); - return; } void ubifs_dump_znode(const struct ubifs_info *c, |