attrib: annotate immutable data as const

This commit is contained in:
Emil Velikov 2024-01-16 14:00:33 +00:00 committed by Luiz Augusto von Dentz
parent a078d13ab5
commit a8543fd2b0
2 changed files with 5 additions and 5 deletions

View File

@ -454,7 +454,7 @@ static gboolean parse_uuid(const char *key, const char *value,
return TRUE;
}
static GOptionEntry primary_char_options[] = {
static const GOptionEntry primary_char_options[] = {
{ "start", 's' , 0, G_OPTION_ARG_INT, &opt_start,
"Starting handle (optional)", "0x0001" },
{ "end", 'e' , 0, G_OPTION_ARG_INT, &opt_end,
@ -464,7 +464,7 @@ static GOptionEntry primary_char_options[] = {
{ NULL },
};
static GOptionEntry char_rw_options[] = {
static const GOptionEntry char_rw_options[] = {
{ "handle", 'a' , 0, G_OPTION_ARG_INT, &opt_handle,
"Read/Write characteristic by handle (required)", "0x0001" },
{ "value", 'n' , 0, G_OPTION_ARG_STRING, &opt_value,
@ -473,7 +473,7 @@ static GOptionEntry char_rw_options[] = {
{NULL},
};
static GOptionEntry gatt_options[] = {
static const GOptionEntry gatt_options[] = {
{ "primary", 0, 0, G_OPTION_ARG_NONE, &opt_primary,
"Primary Service Discovery", NULL },
{ "characteristics", 0, 0, G_OPTION_ARG_NONE, &opt_characteristics,
@ -494,7 +494,7 @@ static GOptionEntry gatt_options[] = {
{ NULL },
};
static GOptionEntry options[] = {
static const GOptionEntry options[] = {
{ "adapter", 'i', 0, G_OPTION_ARG_STRING, &opt_src,
"Specify local adapter interface", "hciX" },
{ "device", 'b', 0, G_OPTION_ARG_STRING, &opt_dst,

View File

@ -760,7 +760,7 @@ static void cmd_mtu(int argcp, char **argvp)
gatt_exchange_mtu(attrib, opt_mtu, exchange_mtu_cb, NULL);
}
static struct {
static const struct {
const char *cmd;
void (*func)(int argcp, char **argvp);
const char *params;