OSDN Git Service

btrfs: remove unnecessary curly braces in btrfs_get_acl
authorChengguang Xu <cgxu519@gmx.com>
Wed, 27 Jun 2018 04:16:38 +0000 (12:16 +0800)
committerDavid Sterba <dsterba@suse.com>
Mon, 6 Aug 2018 11:12:41 +0000 (13:12 +0200)
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 <cgxu519@gmx.com>
Reviewed-by: Nikolay Borisov <nborisov@suse.com>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
fs/btrfs/acl.c

index 7d673ec..3b66c95 100644 (file)
@@ -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;