From a6024d4bf8868b88eb516d7322e5739742a9c688 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Tue, 4 Jun 2019 12:30:04 -0700 Subject: [PATCH] Don't return expression in function returning void This is a constraint violation in ISO C[0]. [0] http://port70.net/~nsz/c/c11/n1570.html#6.8.6.4p1 --- lib/fuse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/fuse.c b/lib/fuse.c index 5f8af4d..ec6cc59 100755 --- a/lib/fuse.c +++ b/lib/fuse.c @@ -5062,7 +5062,7 @@ int fuse_mount(struct fuse *f, const char *mountpoint) { void fuse_unmount(struct fuse *f) { - return fuse_session_unmount(fuse_get_session(f)); + fuse_session_unmount(fuse_get_session(f)); } int fuse_version(void) -- 2.30.2