From: Li Zefan Date: Fri, 7 May 2010 05:57:35 +0000 (+0800) Subject: gconfig: fix to tag NEW symbols correctly X-Git-Url: http://git.mmlx.us/?a=commitdiff_plain;h=e0bb7fe2d7e6d7cfa6135fa9ca5634343fff63b5;p=linux-edison.git gconfig: fix to tag NEW symbols correctly The logic should be reversed. Signed-off-by: Li Zefan Signed-off-by: Michal Marek --- diff --git a/scripts/kconfig/gconf.c b/scripts/kconfig/gconf.c index bef10411837..1b1832943d7 100644 --- a/scripts/kconfig/gconf.c +++ b/scripts/kconfig/gconf.c @@ -1114,7 +1114,7 @@ static gchar **fill_row(struct menu *menu) row[COL_OPTION] = g_strdup_printf("%s %s", _(menu_get_prompt(menu)), - sym && sym_has_value(sym) ? "(NEW)" : ""); + sym && !sym_has_value(sym) ? "(NEW)" : ""); if (opt_mode == OPT_ALL && !menu_is_visible(menu)) row[COL_COLOR] = g_strdup("DarkGray");