2019-07-24 04:26:19

by John Hubbard

[permalink] [raw]
Subject: [PATCH 12/12] fs/ceph: fix a build warning: returning a value from void function

From: John Hubbard <[email protected]>

Trivial build warning fix: don't return a value from a function
whose type is "void".

Signed-off-by: John Hubbard <[email protected]>
---
fs/ceph/debugfs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ceph/debugfs.c b/fs/ceph/debugfs.c
index 2eb88ed22993..fa14c8e8761d 100644
--- a/fs/ceph/debugfs.c
+++ b/fs/ceph/debugfs.c
@@ -294,7 +294,7 @@ void ceph_fs_debugfs_init(struct ceph_fs_client *fsc)

void ceph_fs_debugfs_init(struct ceph_fs_client *fsc)
{
- return 0;
+ return;
}

void ceph_fs_debugfs_cleanup(struct ceph_fs_client *fsc)
--
2.22.0