提交 0dde10be 编写于 作者: M Matthias Kaehlcke 提交者: David Sterba

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: NMatthias Kaehlcke <mka@chromium.org>
Signed-off-by: NDavid Sterba <dsterba@suse.com>
上级 0ce1dd2a
...@@ -3688,7 +3688,7 @@ static noinline int copy_items(struct btrfs_trans_handle *trans, ...@@ -3688,7 +3688,7 @@ static noinline int copy_items(struct btrfs_trans_handle *trans,
src_offset = btrfs_item_ptr_offset(src, start_slot + i); src_offset = btrfs_item_ptr_offset(src, start_slot + i);
if ((i == (nr - 1))) if (i == nr - 1)
last_key = ins_keys[i]; last_key = ins_keys[i];
if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) { if (ins_keys[i].type == BTRFS_INODE_ITEM_KEY) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册