diff options
author | Andreas Gruenbacher <agruenba@redhat.com> | 2016-09-27 13:03:22 +0200 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2016-09-27 21:52:00 -0400 |
commit | 2211d5ba5c6c4e972ba6dbc912b2897425ea6621 (patch) | |
tree | 2e74980ee6f475ea25560b098e367b1b5b7b8907 /fs/btrfs/send.c | |
parent | de04e76935ad5985d318fbce298a17e9dd2092b7 (diff) | |
download | linux-2211d5ba5c6c4e972ba6dbc912b2897425ea6621.tar.bz2 |
posix_acl: xattr representation cleanups
Remove the unnecessary typedefs and the zero-length a_entries array in
struct posix_acl_xattr_header.
Signed-off-by: Andreas Gruenbacher <agruenba@redhat.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/btrfs/send.c')
-rw-r--r-- | fs/btrfs/send.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c index a87675ffd02b..1379e59277e2 100644 --- a/fs/btrfs/send.c +++ b/fs/btrfs/send.c @@ -4329,7 +4329,7 @@ static int __process_new_xattr(int num, struct btrfs_key *di_key, int ret; struct send_ctx *sctx = ctx; struct fs_path *p; - posix_acl_xattr_header dummy_acl; + struct posix_acl_xattr_header dummy_acl; p = fs_path_alloc(); if (!p) |