Re: [PATCH] btrfs: Remove extra parentheses from condition in copy_items()
From: Christoph Hellwig
Date: Thu Jul 27 2017 - 06:09:54 EST
> - if ((i == (nr - 1)))
> + if (i == (nr - 1))
Please remove the other set of redundant parentheses as well if you
change that line.