From c52eb54d149eb1cd045029dea93ff6ea390c73c5 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Mon, 19 Oct 2015 16:51:02 +0200 Subject: [PATCH] kconfig: Fix copy&paste error Fixes: 31847b67bec0 ("kconfig: allow use of relations other than (in)equality") Signed-off-by: Michal Sojka Reviewed-by: Jan Beulich Signed-off-by: Michal Marek Signed-off-by: Christian Lamparter --- config/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/expr.c b/config/expr.c index 667d1aa..cbf4996 100644 --- a/config/expr.c +++ b/config/expr.c @@ -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, ""); - 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: -- 2.31.1