mirror of
https://github.com/libfuse/libfuse.git
synced 2024-11-23 12:14:15 +08:00
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
This commit is contained in:
parent
a9752e5f74
commit
a6024d4bf8
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user