[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1445266262-14082-1-git-send-email-sojkam1@fel.cvut.cz>
Date: Mon, 19 Oct 2015 16:51:02 +0200
From: Michal Sojka <sojkam1@....cvut.cz>
To: "Yann E. MORIN" <yann.morin.1998@...e.fr>,
Michal Marek <mmarek@...e.cz>,
Michal Sojka <sojkam1@....cvut.cz>,
Martin Walch <walch.martin@....de>,
Jan Beulich <JBeulich@...e.com>, linux-kbuild@...r.kernel.org,
linux-kernel@...r.kernel.org
Cc: trivial@...nel.org
Subject: [PATCH] kconfig: Fix copy&paste error
Signed-off-by: Michal Sojka <sojkam1@....cvut.cz>
---
scripts/kconfig/expr.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/kconfig/expr.c b/scripts/kconfig/expr.c
index 667d1aa..cbf4996 100644
--- a/scripts/kconfig/expr.c
+++ b/scripts/kconfig/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, "<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:
--
2.5.3
--
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