diff options
author | Pintu Kumar <quic_pintu@quicinc.com> | 2024-12-09 19:29:36 +0530 |
---|---|---|
committer | Richard Weinberger <richard@nod.at> | 2025-01-18 15:26:40 +0100 |
commit | 923d3583ead133da742b42d9debbb7d5c5a56587 (patch) | |
tree | 0266dd5921f5145eb4849d269ed78dc04355f343 /fs/ubifs | |
parent | 97bbf9e312c3fbaf0baa56120238825d2eb23b8a (diff) |
ubifs: dump_lpt_leb: remove return at end of void function
Noticed that there is a useless return statement at the end of void
function dump_lpt_leb().
Just removing 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/lpt_commit.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/ubifs/lpt_commit.c b/fs/ubifs/lpt_commit.c index aa8837e6247c..f2cb214581fd 100644 --- a/fs/ubifs/lpt_commit.c +++ b/fs/ubifs/lpt_commit.c @@ -1932,7 +1932,6 @@ static void dump_lpt_leb(const struct ubifs_info *c, int lnum) pr_err("(pid %d) finish dumping LEB %d\n", current->pid, lnum); out: vfree(buf); - return; } /** |