Message ID | 20240116-const-v1-14-17c87978f40b@gmail.com |
---|---|
State | New |
Headers | show |
Series | Constify all the things | expand |
diff --git a/mesh/agent.c b/mesh/agent.c index 5058d0d8d..2f9697a33 100644 --- a/mesh/agent.c +++ b/mesh/agent.c @@ -61,7 +61,7 @@ struct oob_info { uint16_t mask; }; -static struct prov_action cap_table[] = { +static const struct prov_action cap_table[] = { {"blink", 0x0001, 0x0000, 1}, {"beep", 0x0002, 0x0000, 1}, {"vibrate", 0x0004, 0x0000, 1}, @@ -73,7 +73,7 @@ static struct prov_action cap_table[] = { {"in-alpha", 0x0000, 0x0008, 8} }; -static struct oob_info oob_table[] = { +static const struct oob_info oob_table[] = { {"other", 0x0001}, {"uri", 0x0002}, {"machine-code-2d", 0x0004},
From: Emil Velikov <emil.velikov@collabora.com> --- mesh/agent.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)