Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1946130AbbEOVoa (ORCPT ); Fri, 15 May 2015 17:44:30 -0400 Received: from mailrelay101.isp.belgacom.be ([195.238.20.128]:54559 "EHLO mailrelay101.isp.belgacom.be" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S934992AbbEOVoX (ORCPT ); Fri, 15 May 2015 17:44:23 -0400 X-Belgacom-Dynamic: yes X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.1 cv=aVuRYB9jFzFsbHnyIO6WTXMsFsysg296qeRS+2aVNsk= c=1 sm=2 a=L7F2yEUBvWIkcgAj5VoA:9 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: A2DQDwCNZ1ZV/yMoQ1dcgxCBMrJiAQEBAQUBgQSYRwQCAoExTQEBAQEBAYELQQODXwEBBCcvIxBROR4ZiDAB10wBAQEHIoYWiikHFoQXBZ1Uln8jYYMZPDGCRgEBAQ From: Fabian Frederick To: linux-kernel@vger.kernel.org Cc: Fabian Frederick , Artem Bityutskiy , Adrian Hunter , linux-mtd@lists.infradead.org Subject: [PATCH 5/6 linux-next] ubifs: remove unnecessary else after break Date: Fri, 15 May 2015 23:43:59 +0200 Message-Id: <1431726240-4675-5-git-send-email-fabf@skynet.be> X-Mailer: git-send-email 2.4.0 In-Reply-To: <1431726240-4675-1-git-send-email-fabf@skynet.be> References: <1431726240-4675-1-git-send-email-fabf@skynet.be> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 948 Lines: 33 else is not needed after break in dbg_check_old_index() This also solves the {} parity. Signed-off-by: Fabian Frederick --- fs/ubifs/commit.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fs/ubifs/commit.c b/fs/ubifs/commit.c index 63f5661..dd9ba81 100644 --- a/fs/ubifs/commit.c +++ b/fs/ubifs/commit.c @@ -680,9 +680,9 @@ int dbg_check_old_index(struct ubifs_info *c, struct ubifs_zbranch *zroot) if (iip + 1 < le16_to_cpu(idx->child_cnt)) { iip = iip + 1; break; - } else - /* Nope, so go up again */ - iip = i->iip; + } + /* Nope, so go up again */ + iip = i->iip; } } else /* Go down left */ -- 2.4.0 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/