summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2017-01-23 18:02:16 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2017-01-24 09:34:11 +0100
commit39db674c45b851e5dab019469e34db3f1c2bf6a9 (patch)
tree1efcf7c15c814e2548541b3d42e82bb832b09913 /common
parent23a90fe3d763d0b349387b148dd1494bb37df971 (diff)
downloadbarebox-39db674c45b851e5dab019469e34db3f1c2bf6a9.tar.gz
barebox-39db674c45b851e5dab019469e34db3f1c2bf6a9.tar.xz
output: use '[0m' to reset colors
'[m' is supposed to have the same effect as '[0m'. However, some EFI implementations seem to ignore '[m', so use '[0m' everywhere to avoid rendering issues. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'common')
-rw-r--r--common/menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/menu.c b/common/menu.c
index e757216c5a..31e5c90a0f 100644
--- a/common/menu.c
+++ b/common/menu.c
@@ -185,7 +185,7 @@ static void print_menu_entry(struct menu *m, struct menu_entry *me,
__print_entry(me->display);
if (selected)
- puts("\e[m");
+ puts("\e[0m");
}
int menu_set_selected_entry(struct menu *m, struct menu_entry* me)