]> git.baikalelectronics.ru Git - kernel.git/commit
btrfs: Remove extra parentheses from condition in copy_items()
authorMatthias Kaehlcke <mka@chromium.org>
Thu, 27 Jul 2017 21:30:23 +0000 (14:30 -0700)
committerDavid Sterba <dsterba@suse.com>
Mon, 21 Aug 2017 15:47:42 +0000 (17:47 +0200)
commit3298886ece8cd1fb88af28d8923845f4d75a251f
treeb733f8f5c7c6540eca747d9e19aad5697e220c46
parent4cd9c409f95599921a589d1345c63bf4dd248c68
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>
fs/btrfs/tree-log.c