diff --git a/src/shared/shell.c b/src/shared/shell.c
index d7fbf46..eac654f 100644
--- a/src/shared/shell.c
+++ b/src/shared/shell.c
prompt = new0(struct bt_shell_prompt_input, 1);
- if (asprintf(&prompt->str, "[%s] %s ", label, msg) < 0) {
+ if (asprintf(&str, COLOR_HIGHLIGHT "[%s] %s " COLOR_OFF, label,
+ msg) < 0) {
free(prompt);
return;
}
return;
}
- if (asprintf(&str, "[%s] %s ", label, msg) < 0)
+ if (asprintf(&str, COLOR_HIGHLIGHT "[%s] %s " COLOR_OFF, label,
+ msg) < 0)
return;
prompt_input(str, func, user_data);