summaryrefslogtreecommitdiffstats
path: root/input/input.c
diff options
context:
space:
mode:
Diffstat (limited to 'input/input.c')
-rw-r--r--input/input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/input/input.c b/input/input.c
index 89c2571d2b..a9ee42338e 100644
--- a/input/input.c
+++ b/input/input.c
@@ -282,8 +282,8 @@ static void append_bind_info(struct input_ctx *ictx, char **pmsg,
char *msg = *pmsg;
struct mp_cmd *cmd = mp_input_parse_cmd(ictx, bstr0(bind->cmd),
bind->location);
- bstr stripped = cmd ? cmd->original : bstr0(bind->cmd);
- msg = talloc_asprintf_append(msg, " '%.*s'", BSTR_P(stripped));
+ char *stripped = cmd ? cmd->original : bind->cmd;
+ msg = talloc_asprintf_append(msg, " '%s'", stripped);
if (!cmd)
msg = talloc_asprintf_append(msg, " (invalid)");
if (strcmp(bind->owner->section, "default") != 0)