projects
/
qemu-gpiodev
/
libfuse.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a9752e5
)
Don't return expression in function returning void
author
Michael Forney
<mforney@mforney.org>
Tue, 4 Jun 2019 19:30:04 +0000
(12:30 -0700)
committer
Nikolaus Rath
<Nikolaus@rath.org>
Thu, 6 Jun 2019 12:31:41 +0000
(13:31 +0100)
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
patch
|
blob
|
history
diff --git
a/lib/fuse.c
b/lib/fuse.c
index 5f8af4d11c3f08be618db0858f4f5d00f1a3314f..ec6cc59b9fdfa8c51f17c7bc87038a1a1d00b0e7 100755
(executable)
--- 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)