[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <tip-7f3e508ee1e6cc1b5865edcbf04a14a76ff1534c@git.kernel.org>
Date: Thu, 5 Jun 2014 07:31:38 -0700
From: tip-bot for zhangdianfang <tipbot@...or.com>
To: linux-tip-commits@...r.kernel.org
Cc: linux-kernel@...r.kernel.org, acme@...hat.com, hpa@...or.com,
mingo@...nel.org, jolsa@...nel.org, zhangdianfang@...wei.com,
jdelvare@...e.de, dcb314@...mail.com, tglx@...utronix.de
Subject: [tip:perf/core] perf tools: Fix "==" into "="
in ui_browser__warning assignment
Commit-ID: 7f3e508ee1e6cc1b5865edcbf04a14a76ff1534c
Gitweb: http://git.kernel.org/tip/7f3e508ee1e6cc1b5865edcbf04a14a76ff1534c
Author: zhangdianfang <zhangdianfang@...wei.com>
AuthorDate: Fri, 30 May 2014 08:53:58 +0800
Committer: Jiri Olsa <jolsa@...nel.org>
CommitDate: Tue, 3 Jun 2014 21:34:48 +0200
perf tools: Fix "==" into "=" in ui_browser__warning assignment
Convert "==" into "=" in ui_browser__warning assignment.
Bug description: https://bugzilla.kernel.org/show_bug.cgi?id=76751
Reported-by: David Binderman <dcb314@...mail.com>
Signed-off-by: Dianfang Zhang <zhangdianfang@...wei.com>
Acked-by: Arnaldo Carvalho de Melo <acme@...hat.com>
Cc: Jean Delvare <jdelvare@...e.de>
Link: http://lkml.kernel.org/r/20140530154709.GC1202@kernel.org
[ changed the changelog a bit ]
Signed-off-by: Jiri Olsa <jolsa@...nel.org>
---
tools/perf/ui/browser.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/perf/ui/browser.c b/tools/perf/ui/browser.c
index d11541d..3ccf6e1 100644
--- a/tools/perf/ui/browser.c
+++ b/tools/perf/ui/browser.c
@@ -194,7 +194,7 @@ int ui_browser__warning(struct ui_browser *browser, int timeout,
ui_helpline__vpush(format, args);
va_end(args);
} else {
- while ((key == ui__question_window("Warning!", text,
+ while ((key = ui__question_window("Warning!", text,
"Press any key...",
timeout)) == K_RESIZE)
ui_browser__handle_resize(browser);
--
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