From 0f55a92c4b900292518542690e06c1391f8e9d91 Mon Sep 17 00:00:00 2001 From: "pavel.uhanov" <pavel.uhanov@demlabs.net> Date: Thu, 29 Aug 2024 09:02:24 +0300 Subject: [PATCH] [*] replace const char * to const char[] --- dap-sdk | 2 +- modules/net/dap_chain_node.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dap-sdk b/dap-sdk index 7a5e2ea724..f57a08d56b 160000 --- a/dap-sdk +++ b/dap-sdk @@ -1 +1 @@ -Subproject commit 7a5e2ea724c3d778384ecff743f5cf846e92778f +Subproject commit f57a08d56b0f01200fb5f7b9edde9977e13aefa5 diff --git a/modules/net/dap_chain_node.c b/modules/net/dap_chain_node.c index c562374f19..d530ede2b7 100644 --- a/modules/net/dap_chain_node.c +++ b/modules/net/dap_chain_node.c @@ -61,7 +61,7 @@ static const uint64_t s_cmp_delta_timestamp = (uint64_t)1000 /*sec*/ * (uint64_t static const uint64_t s_cmp_delta_event = 0; static const uint64_t s_cmp_delta_atom = 10; static const uint64_t s_timer_update_states_info = 10 /*sec*/ * 1000; -static const char *s_states_group = ".nodes.states"; +static const char s_states_group[] = ".nodes.states"; /** * @brief get states info about current -- GitLab