aboutsummaryrefslogtreecommitdiff
path: root/common/menu.c
diff options
context:
space:
mode:
authorVishal Bhoj <vishal.bhoj@linaro.org>2014-06-02 11:20:28 +0530
committerVishal Bhoj <vishal.bhoj@linaro.org>2014-06-02 11:20:28 +0530
commitd0fc6571e7c769847836aad3071a3b21a820eae5 (patch)
tree2c3f69540a367929200c47bf024ecc5ae2a17dbb /common/menu.c
parent3fa3bdcfdcb724087762c9dcf6b48e2525bbd6ff (diff)
parent90b51c33f362926e17d4c07dcef1ce822abaa89f (diff)
Merge remote-tracking branch 'origin/master'
Diffstat (limited to 'common/menu.c')
-rw-r--r--common/menu.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/common/menu.c b/common/menu.c
index ba393adc3..94afeb290 100644
--- a/common/menu.c
+++ b/common/menu.c
@@ -5,6 +5,7 @@
*/
#include <common.h>
+#include <cli.h>
#include <malloc.h>
#include <errno.h>
#include <linux/list.h>
@@ -196,8 +197,9 @@ static inline int menu_interactive_choice(struct menu *m, void **choice)
menu_display(m);
if (!m->item_choice) {
- readret = readline_into_buffer("Enter choice: ", cbuf,
- m->timeout / 10);
+ readret = cli_readline_into_buffer("Enter choice: ",
+ cbuf,
+ m->timeout / 10);
if (readret >= 0) {
choice_item = menu_item_by_key(m, cbuf);