From: Chengguang Xu Date: Wed, 27 Jun 2018 04:16:38 +0000 (+0800) Subject: btrfs: remove unnecessary curly braces in btrfs_get_acl X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=4de426cd394e4de4d3039aff7d20724d7d988dcf;p=linux.git btrfs: remove unnecessary curly braces in btrfs_get_acl It's only coding style fix not functinal change. When if/else has only one statement then the braces are not needed. Signed-off-by: Chengguang Xu Reviewed-by: Nikolay Borisov Reviewed-by: David Sterba Signed-off-by: David Sterba --- diff --git a/fs/btrfs/acl.c b/fs/btrfs/acl.c index 7d673ec9e54a9..3b66c957ea6f2 100644 --- a/fs/btrfs/acl.c +++ b/fs/btrfs/acl.c @@ -40,13 +40,12 @@ struct posix_acl *btrfs_get_acl(struct inode *inode, int type) return ERR_PTR(-ENOMEM); size = btrfs_getxattr(inode, name, value, size); } - if (size > 0) { + if (size > 0) acl = posix_acl_from_xattr(&init_user_ns, value, size); - } else if (size == -ENODATA || size == 0) { + else if (size == -ENODATA || size == 0) acl = NULL; - } else { + else acl = ERR_PTR(size); - } kfree(value); return acl;