提交 f6aad261 编写于 作者: M Michal Sojka 提交者: Michal Marek

kconfig: Fix copy&paste error

Fixes: 31847b67 ("kconfig: allow use of relations other than (in)equality")
Signed-off-by: NMichal Sojka <sojkam1@fel.cvut.cz>
Reviewed-by: NJan Beulich <jbeulich@suse.com>
Signed-off-by: NMichal Marek <mmarek@suse.cz>
上级 2163e7b3
......@@ -1113,7 +1113,7 @@ void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *
fn(data, e->left.sym, e->left.sym->name);
else
fn(data, NULL, "<choice>");
fn(data, NULL, e->type == E_LEQ ? ">=" : ">");
fn(data, NULL, e->type == E_GEQ ? ">=" : ">");
fn(data, e->right.sym, e->right.sym->name);
break;
case E_UNEQUAL:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册