From 986d15ea9c61a76ed23bfccda8f3e943b6146115 Mon Sep 17 00:00:00 2001 From: wm4 Date: Fri, 24 Oct 2014 13:42:02 +0200 Subject: command: fix debug output It was a bit ugly/annoying. --- input/cmd_parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'input/cmd_parse.c') diff --git a/input/cmd_parse.c b/input/cmd_parse.c index 90d2650cf9..6f60c0c081 100644 --- a/input/cmd_parse.c +++ b/input/cmd_parse.c @@ -428,12 +428,12 @@ void mp_cmd_dump(struct mp_log *log, int msgl, char *header, struct mp_cmd *cmd) if (!mp_msg_test(log, msgl)) return; if (header) - mp_msg(log, msgl, "%s: ", header); + mp_msg(log, msgl, "%s ", header); if (!cmd) { mp_msg(log, msgl, "(NULL)\n"); return; } - mp_msg(log, msgl, "%s, flags=%d args=[", cmd->name, cmd->flags); + mp_msg(log, msgl, "%s, flags=%d, args=[", cmd->name, cmd->flags); for (int n = 0; n < cmd->nargs; n++) { char *s = m_option_print(cmd->args[n].type, &cmd->args[n].v); if (n) -- cgit v1.2.3