diff options
author | Roger Willcocks <roger@filmlight.ltd.uk> | 2014-05-20 08:52:21 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2014-05-20 08:52:21 +1000 |
commit | 376c2f3a5f0706868b08ccf043bf3532936a03b1 (patch) | |
tree | 57fa77e7ac020a1bef0cdb2b21b9627a13ad943b /fs/xfs/xfs_ialloc.h | |
parent | 8695d27ec34b19c58a0dc25bfcce3f2c6cf0699d (diff) | |
download | linux-stable-376c2f3a5f0706868b08ccf043bf3532936a03b1.tar.gz linux-stable-376c2f3a5f0706868b08ccf043bf3532936a03b1.tar.bz2 linux-stable-376c2f3a5f0706868b08ccf043bf3532936a03b1.zip |
xfs: fix compile error when libxfs header used in C++ code
xfs_ialloc.h:102: error: expected ',' or '...' before 'delete'
Simple parameter rename, no changes to behaviour.
Signed-off-by: Roger Willcocks <roger@filmlight.ltd.uk>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_ialloc.h')
-rw-r--r-- | fs/xfs/xfs_ialloc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_ialloc.h b/fs/xfs/xfs_ialloc.h index 812365d17e67..95ad1c002d60 100644 --- a/fs/xfs/xfs_ialloc.h +++ b/fs/xfs/xfs_ialloc.h @@ -90,7 +90,7 @@ xfs_difree( struct xfs_trans *tp, /* transaction pointer */ xfs_ino_t inode, /* inode to be freed */ struct xfs_bmap_free *flist, /* extents to free */ - int *delete, /* set if inode cluster was deleted */ + int *deleted, /* set if inode cluster was deleted */ xfs_ino_t *first_ino); /* first inode in deleted cluster */ /* |