treewide: try to use const char * for string literals

This commit is contained in:
Barnabás Pőcze 2023-09-16 17:47:35 +02:00
parent fc72208fa0
commit 436787d6ba
9 changed files with 20 additions and 17 deletions

View file

@ -197,7 +197,9 @@ static char *port_alias(char *buffer, int size, struct object *n, struct object
static void print_port(struct data *data, const char *prefix, struct object *n,
struct object *p, bool verbose)
{
char buffer[1024], id[64] = "", *prefix2 = "";
char buffer[1024], id[64] = "";
const char *prefix2 = "";
if (data->opt_id) {
snprintf(id, sizeof(id), "%4d ", p->id);
prefix2 = " ";