summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorYoungjun Yoo <youngjun.willow@gmail.com>2019-04-20 22:51:36 +0900
committerJaegeuk Kim <jaegeuk@kernel.org>2019-05-08 21:23:11 -0700
commitc456362b91a681f1e9a1399cebb4586abc819541 (patch)
tree6d5fd82a5d780fa2e51f281c70b6d6fe7ef0ddf4 /fs
parentd02a6e6174a772fa90c5efa51a55a04e6d8c0006 (diff)
f2fs: insert space before the open parenthesis '('
Modify coding style ERROR: space required before the open parenthesis '(' Signed-off-by: Youngjun Yoo <youngjun.willow@gmail.com> Reviewed-by: Chao Yu <yuchao0@huawei.com> Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/f2fs/acl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/f2fs/acl.c b/fs/f2fs/acl.c
index 63e599524085..7b9ec6416cf5 100644
--- a/fs/f2fs/acl.c
+++ b/fs/f2fs/acl.c
@@ -285,7 +285,7 @@ static int f2fs_acl_create_masq(struct posix_acl *acl, umode_t *mode_p)
/* assert(atomic_read(acl->a_refcount) == 1); */
FOREACH_ACL_ENTRY(pa, acl, pe) {
- switch(pa->e_tag) {
+ switch (pa->e_tag) {
case ACL_USER_OBJ:
pa->e_perm &= (mode >> 6) | ~S_IRWXO;
mode &= (pa->e_perm << 6) | ~S_IRWXU;