diff options
author | 2024-12-09 21:51:04 +0530 | |
---|---|---|
committer | 2025-01-18 15:27:14 +0100 | |
commit | 404de7abc05758254ad57d9501d30427d9c57417 (patch) | |
tree | 4477fb39dc6e01780d9e9c6f0b1ac970156ff964 | |
parent | ubifs: dump_lpt_leb: remove return at end of void function (diff) | |
download | wireguard-linux-404de7abc05758254ad57d9501d30427d9c57417.tar.xz wireguard-linux-404de7abc05758254ad57d9501d30427d9c57417.zip |
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>
-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, |