diff options
author | Carlos Maiolino <cmaiolino@redhat.com> | 2020-09-04 09:51:31 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2020-09-15 20:52:42 -0700 |
commit | 47e6cc100054c8c6b809e25c286a2fd82e82bcb7 (patch) | |
tree | ca600957d49442cf7fd7b1d12944eb612d80443d /fs/xfs/xfs_attr_list.c | |
parent | 6337c84466c250d5da797bc5d6941c501d500e48 (diff) | |
download | linux-47e6cc100054c8c6b809e25c286a2fd82e82bcb7.tar.gz linux-47e6cc100054c8c6b809e25c286a2fd82e82bcb7.tar.bz2 linux-47e6cc100054c8c6b809e25c286a2fd82e82bcb7.zip |
xfs: Remove typedef xfs_attr_shortform_t
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Carlos Maiolino <cmaiolino@redhat.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_attr_list.c')
-rw-r--r-- | fs/xfs/xfs_attr_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_attr_list.c b/fs/xfs/xfs_attr_list.c index 50f922cad91a..4eb1d6faecfb 100644 --- a/fs/xfs/xfs_attr_list.c +++ b/fs/xfs/xfs_attr_list.c @@ -61,7 +61,7 @@ xfs_attr_shortform_list( int error = 0; ASSERT(dp->i_afp != NULL); - sf = (xfs_attr_shortform_t *)dp->i_afp->if_u1.if_data; + sf = (struct xfs_attr_shortform *)dp->i_afp->if_u1.if_data; ASSERT(sf != NULL); if (!sf->hdr.count) return 0; |