From f9c8327e5ed1b0d608a4d5b2905e5cb7337c0938 Mon Sep 17 00:00:00 2001 From: Christian Eggers Date: Mon, 5 May 2025 14:43:46 +0200 Subject: [PATCH] tools/mesh-cfgclient: constify --- tools/mesh/cfgcli.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/mesh/cfgcli.c b/tools/mesh/cfgcli.c index fb6fa666d..8801070ec 100644 --- a/tools/mesh/cfgcli.c +++ b/tools/mesh/cfgcli.c @@ -66,7 +66,7 @@ static uint32_t rsp_timeout = DEFAULT_TIMEOUT; static uint16_t target = UNASSIGNED_ADDRESS; static uint32_t parms[8]; -static struct cfg_cmd cmds[] = { +static const struct cfg_cmd cmds[] = { { OP_APPKEY_ADD, OP_APPKEY_STATUS, "AppKeyAdd" }, { OP_APPKEY_DELETE, OP_APPKEY_STATUS, "AppKeyDelete" }, { OP_APPKEY_GET, OP_APPKEY_LIST, "AppKeyGet" }, -- 2.47.3