You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.6 KiB
53 lines
1.6 KiB
7 years ago
|
From 22ba14e45e84e0bd12a9ab1c9d0460b9ae27c10c Mon Sep 17 00:00:00 2001
|
||
|
From: Peter Lemenkov <lemenkov@gmail.com>
|
||
|
Date: Mon, 9 Aug 2010 12:10:40 +0400
|
||
|
Subject: [PATCH 1/1] More parentheses
|
||
|
|
||
|
Signed-off-by: Peter Lemenkov <lemenkov@gmail.com>
|
||
|
---
|
||
|
lib/fuse.c | 8 +++-----
|
||
|
lib/fuse_lowlevel.c | 2 +-
|
||
|
2 files changed, 4 insertions(+), 6 deletions(-)
|
||
|
|
||
|
diff --git a/lib/fuse.c b/lib/fuse.c
|
||
|
index d511964..328ebba 100644
|
||
|
--- a/lib/fuse.c
|
||
|
+++ b/lib/fuse.c
|
||
|
@@ -991,17 +991,15 @@ static int fuse_compat_open(struct fuse_fs *fs, const char *path,
|
||
|
{
|
||
|
int err;
|
||
|
if (!fs->compat || fs->compat >= 25)
|
||
|
- err = fs->op.open(path, fi);
|
||
|
+ err = (fs->op.open)(path, fi);
|
||
|
else if (fs->compat == 22) {
|
||
|
struct fuse_file_info_compat tmp;
|
||
|
memcpy(&tmp, fi, sizeof(tmp));
|
||
|
- err = ((struct fuse_operations_compat22 *) &fs->op)->open(path,
|
||
|
- &tmp);
|
||
|
+ err = (((struct fuse_operations_compat22 *) &fs->op)->open)(path, &tmp);
|
||
|
memcpy(fi, &tmp, sizeof(tmp));
|
||
|
fi->fh = tmp.fh;
|
||
|
} else
|
||
|
- err = ((struct fuse_operations_compat2 *) &fs->op)
|
||
|
- ->open(path, fi->flags);
|
||
|
+ err = (((struct fuse_operations_compat2 *) &fs->op)->open)(path, fi->flags);
|
||
|
return err;
|
||
|
}
|
||
|
|
||
|
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c
|
||
|
index c86a910..4f19d61 100644
|
||
|
--- a/lib/fuse_lowlevel.c
|
||
|
+++ b/lib/fuse_lowlevel.c
|
||
|
@@ -716,7 +716,7 @@ static void do_open(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
|
||
|
fi.flags = arg->flags;
|
||
|
|
||
|
if (req->f->op.open)
|
||
|
- req->f->op.open(req, nodeid, &fi);
|
||
|
+ (req->f->op.open)(req, nodeid, &fi);
|
||
|
else
|
||
|
fuse_reply_open(req, &fi);
|
||
|
}
|
||
|
--
|
||
|
1.7.9.3
|
||
|
|