aboutsummaryrefslogtreecommitdiffstats
path: root/lib/fuse_lowlevel.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/fuse_lowlevel.c')
-rw-r--r--lib/fuse_lowlevel.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/fuse_lowlevel.c b/lib/fuse_lowlevel.c
index 04a34f3..677ef79 100644
--- a/lib/fuse_lowlevel.c
+++ b/lib/fuse_lowlevel.c
@@ -736,8 +736,7 @@ static void do_setxattr(fuse_req_t req, fuse_ino_t nodeid, const void *inarg)
char *value = name + strlen(name) + 1;
if (req->f->op.setxattr)
- req->f->op.setxattr(req, nodeid, name, value, arg->size,
- arg->flags);
+ req->f->op.setxattr(req, nodeid, name, value, arg->size, arg->flags);
else
fuse_reply_err(req, ENOSYS);
}