ctl-client: Replace = with : in event description

Let's not abuse the equality sign more than necessary. ;)
wayvncctl-polishing
Andri Yngvason 2023-01-15 18:03:51 +00:00
parent 39ec433f87
commit 6174ff21f7
1 changed files with 2 additions and 1 deletions

View File

@ -714,7 +714,8 @@ static void print_event_info(const struct cmd_info* info)
for (int i = 0; info->params[i].name != NULL; ++i)
table_printer_print_fmtline(&printer,
info->params[i].description,
"%s=%s", info->params[i].name, info->params[i].schema);
"%s: %s", info->params[i].name,
info->params[i].schema);
printf("\n");
}
}