From: Arnaldo Carvalho de Melo Date: Mon, 5 Apr 2010 15:04:23 +0000 (-0300) Subject: perf TUI: Move "Yes" button to before "No" X-Git-Tag: v2.6.35-rc1~3^2~166 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c0ed55d2e4f600335193612725c0d7c8211a7a4a;p=platform%2Fkernel%2Flinux-3.10.git perf TUI: Move "Yes" button to before "No" Esc + Enter should be enough warning to avoid accidentaly exiting from the browser. Cc: Frédéric Weisbecker Cc: Mike Galbraith Cc: Peter Zijlstra Cc: Paul Mackerras LKML-Reference: Signed-off-by: Arnaldo Carvalho de Melo --- diff --git a/tools/perf/util/newt.c b/tools/perf/util/newt.c index c0e71aa..7a123a9 100644 --- a/tools/perf/util/newt.c +++ b/tools/perf/util/newt.c @@ -132,7 +132,7 @@ static bool dialog_yesno(const char *msg) { /* newtWinChoice should really be accepting const char pointers... */ char yes[] = "Yes", no[] = "No"; - return newtWinChoice(NULL, no, yes, (char *)msg) == 2; + return newtWinChoice(NULL, yes, no, (char *)msg) == 1; } /*