From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756987Ab0FNWqK (ORCPT ); Mon, 14 Jun 2010 18:46:10 -0400 Received: from mail-pw0-f46.google.com ([209.85.160.46]:40045 "EHLO mail-pw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751469Ab0FNWqI (ORCPT ); Mon, 14 Jun 2010 18:46:08 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; b=sKq6MBHjLjCuGujTWG+8xx4XAaeBESgTK1lVUZoMGbznby9dhUA/7A0K4gegErVXbW LYp0o2J0SEDn1en7G1WSehm06FRfj2NvoZXtbTs3qdfDUCuhYwd/051ntcoW80jEKx75 FLnWmPiy80CY46L1rSSYPNFI5I8yHWvsvLHE0= From: "Justin P. Mattock" To: reiserfs-devel@vger.kernel.org Cc: edward.shishkin@gmail.com, linux-kernel@vger.kernel.org, "Justin P. Mattock" Subject: [PATCH 1/8 v2]reiserfs:stree.c Fix variable set but not used. Date: Mon, 14 Jun 2010 15:46:08 -0700 Message-Id: <1276555568-31550-1-git-send-email-justinmattock@gmail.com> X-Mailer: git-send-email 1.7.1.rc1.21.gf3bd6 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Resend of this patch due to previous whitespace issues. The below fixes this warning: fs/reiserfs/stree.c: In function 'search_by_key': fs/reiserfs/stree.c:602:6: warning: variable 'right_neighbor_of_leaf_node' set but not used Signed-off-by: Justin P. Mattock Acked-by: Edward Shishkin --- fs/reiserfs/stree.c | 3 --- 1 files changed, 0 insertions(+), 3 deletions(-) diff --git a/fs/reiserfs/stree.c b/fs/reiserfs/stree.c index 313d39d..f268067 100644 --- a/fs/reiserfs/stree.c +++ b/fs/reiserfs/stree.c @@ -599,7 +599,6 @@ int search_by_key(struct super_block *sb, const struct cpu_key *key, /* Key to s struct buffer_head *bh; struct path_element *last_element; int node_level, retval; - int right_neighbor_of_leaf_node; int fs_gen; struct buffer_head *reada_bh[SEARCH_BY_KEY_READA]; b_blocknr_t reada_blocks[SEARCH_BY_KEY_READA]; @@ -617,8 +616,6 @@ int search_by_key(struct super_block *sb, const struct cpu_key *key, /* Key to s pathrelse(search_path); - right_neighbor_of_leaf_node = 0; - /* With each iteration of this loop we search through the items in the current node, and calculate the next current node(next path element) for the next iteration of this loop.. */ -- 1.7.1.rc1.21.gf3bd6