From e40f4ee0112e6c9b0a16fb12ebd7bbcabc9b844a Mon Sep 17 00:00:00 2001 From: Bryan Hundven Date: Wed, 11 Nov 2015 21:27:24 -0800 Subject: kconfig: Add updates from linux-4.3 and 4.4 Add updates from the following merges: https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/scripts/kconfig?id=605e9710fb5fef0dd2bb49d7b75e46601df62112 and https://git.kernel.org/cgit/linux/kernel/git/torvalds/linux.git/commit/scripts/kconfig?id=152813e6e4bbb5f017e33eba7eb01bbda4b389b8 that apply to crosstool-ng. Signed-off-by: Bryan Hundven --- kconfig/expr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'kconfig/expr.c') diff --git a/kconfig/expr.c b/kconfig/expr.c index 667d1aa2..cbf4996d 100644 --- a/kconfig/expr.c +++ b/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, ""); - 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: -- cgit v1.2.3