ctl-client: Replace = with : in event description
Let's not abuse the equality sign more than necessary. ;)srht-ci
parent
b54b0a31f7
commit
5bf6f23eed
|
@ -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