[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <2865108.QhoiiS6j3s@tacticalops>
Date: Wed, 02 Oct 2013 07:24:33 +0200
From: Martin Walch <walch.martin@....de>
To: unlisted-recipients:; (no To-header on input)
Cc: Michal Marek <mmarek@...e.cz>, Jiri Kosina <trivial@...nel.org>,
"Yann E. MORIN" <yann.morin.1998@...e.fr>,
Arve Hjønnevåg <arve@...roid.com>,
Benjamin Poirier <bpoirier@...e.de>,
Dirk Gouders <dirk@...ders.net>,
Wang YanQing <udknight@...il.com>,
Andrew Morton <akpm@...ux-foundation.org>,
Jean Delvare <jdelvare@...e.de>,
Kees Cook <keescook@...omium.org>,
Alan Cox <alan@...ux.intel.com>, linux-kbuild@...r.kernel.org,
linux-kernel@...r.kernel.org
Subject: [PATCH 3/4] kconfig: adjust warning message for conflicting types
From: Martin Walch <walch.martin@....de>
Date: Wed, 2 Oct 2013 06:58:01 +0200
Subject: [PATCH 3/4] kconfig: adjust warning message for conflicting types
Adjust warning: a second symbol type does *not* replace the first one.
Signed-off-by: Martin Walch <walch.martin@....de>
---
scripts/kconfig/menu.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/kconfig/menu.c b/scripts/kconfig/menu.c
index b970101..e511df5 100644
--- a/scripts/kconfig/menu.c
+++ b/scripts/kconfig/menu.c
@@ -119,7 +119,7 @@ void menu_set_type(int type)
sym->type = type;
return;
}
- menu_warn(current_entry, "type of '%s' redefined from '%s' to '%s'",
+ menu_warn(current_entry, "type of '%s' not redefined from '%s' to '%s'",
sym->name ? sym->name : "<choice>",
sym_type_name(sym->type), sym_type_name(type));
}
--
1.8.1.5
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists