From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751562AbdG0KJs (ORCPT ); Thu, 27 Jul 2017 06:09:48 -0400 Received: from bombadil.infradead.org ([65.50.211.133]:46218 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751530AbdG0KJr (ORCPT ); Thu, 27 Jul 2017 06:09:47 -0400 Date: Thu, 27 Jul 2017 03:09:45 -0700 From: Christoph Hellwig To: Matthias Kaehlcke Cc: Chris Mason , Josef Bacik , David Sterba , linux-btrfs@vger.kernel.org, linux-kernel@vger.kernel.org, Doug Anderson Subject: Re: [PATCH] btrfs: Remove extra parentheses from condition in copy_items() Message-ID: <20170727100945.GA5221@infradead.org> References: <20170726204759.160649-1-mka@chromium.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170726204759.160649-1-mka@chromium.org> User-Agent: Mutt/1.8.0 (2017-02-23) X-SRS-Rewrite: SMTP reverse-path rewritten from by bombadil.infradead.org. See http://www.infradead.org/rpr.html Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org > - if ((i == (nr - 1))) > + if (i == (nr - 1)) Please remove the other set of redundant parentheses as well if you change that line.