ctl-client: Replace = with : in event description
Let's not abuse the equality sign more than necessary. ;)wayvncctl-polishing
parent
39ec433f87
commit
6174ff21f7
|
@ -714,7 +714,8 @@ static void print_event_info(const struct cmd_info* info)
|
||||||
for (int i = 0; info->params[i].name != NULL; ++i)
|
for (int i = 0; info->params[i].name != NULL; ++i)
|
||||||
table_printer_print_fmtline(&printer,
|
table_printer_print_fmtline(&printer,
|
||||||
info->params[i].description,
|
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");
|
printf("\n");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue