diff options
Diffstat (limited to 'fuse')
-rw-r--r-- | fuse/Android.mk | 2 | ||||
-rw-r--r-- | fuse/mount.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/fuse/Android.mk b/fuse/Android.mk index 5260e146b..00763ea7e 100644 --- a/fuse/Android.mk +++ b/fuse/Android.mk @@ -45,6 +45,8 @@ LOCAL_CFLAGS := \ -DFUSE_USE_VERSION=26 \ -fno-strict-aliasing +LOCAL_CFLAGS += -Wno-pointer-arith -Wno-sign-compare -Wno-unused-parameter + LOCAL_MODULE := libfusetwrp LOCAL_MODULE_TAGS := optional diff --git a/fuse/mount.c b/fuse/mount.c index eb0bb17d3..873685634 100644 --- a/fuse/mount.c +++ b/fuse/mount.c @@ -282,7 +282,7 @@ static int receive_fd(int fd) } cmsg = CMSG_FIRSTHDR(&msg); - if (!cmsg->cmsg_type == SCM_RIGHTS) { + if (cmsg->cmsg_type != SCM_RIGHTS) { fprintf(stderr, "got control message of unknown type %d\n", cmsg->cmsg_type); return -1; |