diff options
author | Matthias Kaehlcke <mka@chromium.org> | 2017-07-27 17:30:23 -0400 |
---|---|---|
committer | David Sterba <dsterba@suse.com> | 2017-08-21 11:47:42 -0400 |
commit | 0dde10bed2c44a4024eb446cc72fe4e0cb97ec06 (patch) | |
tree | b733f8f5c7c6540eca747d9e19aad5697e220c46 /fs/btrfs/tree-log.c | |
parent | 0ce1dd2a4ab5513cfa9cce3138251a3c71e446cd (diff) |
btrfs: Remove extra parentheses from condition in copy_items()
There is no need for the extra pair of parentheses, remove it. This
fixes the following warning when building with clang:
fs/btrfs/tree-log.c:3694:10: warning: equality comparison with extraneous
parentheses [-Wparentheses-equality]
if ((i == (nr - 1)))
~~^~~~~~~~~~~
Also remove the unnecessary parentheses around the substraction.
Signed-off-by: Matthias Kaehlcke <mka@chromium.org>
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/btrfs/tree-log.c')
-rw-r--r-- | fs/btrfs/tree-log.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/btrfs/tree-log.c b/fs/btrfs/tree-log.c index a2a84e266d37..ad7f4bab640b 100644 --- a/fs/btrfs/tree-log.c +++ b/fs/btrfs/tree-log.c | |||
@@ -3688,7 +3688,7 @@ static noinline int copy_items(struct btrfs_trans_handle *trans, | |||
3688 | 3688 | ||
3689 | src_offset = btrfs_item_ptr_offset(src, start_slot + i); | 3689 | src_offset = btrfs_item_ptr_offset(src, start_slot + i); |
3690 | 3690 | ||
3691 | if ((i == (nr - 1))) | 3691 | if (i == nr - 1) |
3692 | last_key = ins_keys[i]; | 3692 | last_key = ins_keys[i]; |
3693 | 3693 | ||
3694 | if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) { | 3694 | if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) { |