Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932650Ab0FKUlT (ORCPT ); Fri, 11 Jun 2010 16:41:19 -0400 Received: from mail-pw0-f46.google.com ([209.85.160.46]:51209 "EHLO mail-pw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756917Ab0FKUlP (ORCPT ); Fri, 11 Jun 2010 16:41:15 -0400 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; b=BlCEAozhUlsuW+OdxXd+/L9KMdNtnj9AFH3Vz9x4r4FLQ6F1YYEarjNDf2oDgq07Ar uOtjXjGdAZ3d8c+xCWrdwCzndaj2i0tPT31YceAWAgCSFLFR+P0dzlvVbQo1UOr06+ZK 2I9flZPcvihICqZ2WBJaJCY7fe7SOh3JzBkP8= From: "Justin P. Mattock" To: linux-kernel@vger.kernel.org Cc: linux-audit@redhat.com, zippel@linux-m68k.org, linux-fsdevel@vger.kernel.org, rusty@rustcorp.com.au, "Justin P. Mattock" Subject: [PATCH 1/6]scripts:conf.c Fix warning: variable 'type' set but not used Date: Fri, 11 Jun 2010 13:41:04 -0700 Message-Id: <1276288869-16815-2-git-send-email-justinmattock@gmail.com> X-Mailer: git-send-email 1.7.1.rc1.21.gf3bd6 In-Reply-To: <1276288869-16815-1-git-send-email-justinmattock@gmail.com> References: <1276288869-16815-1-git-send-email-justinmattock@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1736 Lines: 57 Not sure if this is correct or not, but with make menuconfig HOSTCC scripts/kconfig/conf.o scripts/kconfig/conf.c: In function 'conf_sym': scripts/kconfig/conf.c:159:6: warning: variable 'type' set but not used scripts/kconfig/conf.c: In function 'conf_choice': scripts/kconfig/conf.c:231:6: warning: variable 'type' set but not used HOSTLD scripts/kconfig/mconf I get this using gcc 4.6.0 the below change fixes this form me. please have a look and let me know. Signed-off-by: Justin P. Mattock --- scripts/kconfig/conf.c | 4 ---- 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index 9960d1c..d6369e8 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c @@ -156,14 +156,12 @@ static int conf_string(struct menu *menu) static int conf_sym(struct menu *menu) { struct symbol *sym = menu->sym; - int type; tristate oldval, newval; while (1) { printf("%*s%s ", indent - 1, "", _(menu->prompt->text)); if (sym->name) printf("(%s) ", sym->name); - type = sym_get_type(sym); putchar('['); oldval = sym_get_tristate_value(sym); switch (oldval) { @@ -228,11 +226,9 @@ static int conf_choice(struct menu *menu) { struct symbol *sym, *def_sym; struct menu *child; - int type; bool is_new; sym = menu->sym; - type = sym_get_type(sym); is_new = !sym_has_value(sym); if (sym_is_changable(sym)) { conf_sym(menu); -- 1.7.1.rc1.21.gf3bd6 -- 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/