diff options
author | Youngjun Yoo <youngjun.willow@gmail.com> | 2019-04-20 22:51:36 +0900 |
---|---|---|
committer | Jaegeuk Kim <jaegeuk@kernel.org> | 2019-05-08 21:23:11 -0700 |
commit | c456362b91a681f1e9a1399cebb4586abc819541 (patch) | |
tree | 6d5fd82a5d780fa2e51f281c70b6d6fe7ef0ddf4 /fs/f2fs | |
parent | d02a6e6174a772fa90c5efa51a55a04e6d8c0006 (diff) | |
download | linux-c456362b91a681f1e9a1399cebb4586abc819541.tar.gz linux-c456362b91a681f1e9a1399cebb4586abc819541.tar.bz2 linux-c456362b91a681f1e9a1399cebb4586abc819541.zip |
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/f2fs')
-rw-r--r-- | fs/f2fs/acl.c | 2 |
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; |