diff options
author | Fabian Frederick <fabf@skynet.be> | 2015-03-25 14:54:53 +1100 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2015-03-25 14:54:53 +1100 |
commit | 86aaf02e57d25a3b4094ca76ff805ee2d7aa30f8 (patch) | |
tree | 6bc6afa1b7db1751bdd980852c5e66a1cdeed876 /fs/xfs | |
parent | b26384dc52edba2f5fcc2b38eccc98e1f44bb379 (diff) | |
download | linux-86aaf02e57d25a3b4094ca76ff805ee2d7aa30f8.tar.gz linux-86aaf02e57d25a3b4094ca76ff805ee2d7aa30f8.tar.bz2 linux-86aaf02e57d25a3b4094ca76ff805ee2d7aa30f8.zip |
xfs: use bool instead of int in xfs_rename()
new_parent and src_is_directory are only used in 0/1 context.
Signed-off-by: Fabian Frederick <fabf@skynet.be>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_inode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c index daafa1f6d260..b7064f20de7f 100644 --- a/fs/xfs/xfs_inode.c +++ b/fs/xfs/xfs_inode.c @@ -2790,8 +2790,8 @@ xfs_rename( { xfs_trans_t *tp = NULL; xfs_mount_t *mp = src_dp->i_mount; - int new_parent; /* moving to a new dir */ - int src_is_directory; /* src_name is a directory */ + bool new_parent; /* moving to a new dir */ + bool src_is_directory; /* src_name is a directory */ int error; xfs_bmap_free_t free_list; xfs_fsblock_t first_block; |